Skip to content

Commit

Permalink
Fix missing comma (#6851)
Browse files Browse the repository at this point in the history
Fix missing comma at line 55 (after tagName: 'p'), so that the example to be usable.
  • Loading branch information
Sisanu authored and danielbachhuber committed May 20, 2018
1 parent 562c81f commit 6fc2152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/blocks/introducing-attributes-and-editable-fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ registerBlockType( 'gutenberg-boilerplate-es5/hello-world-step-03', {
var content = props.attributes.content;

return el( RichText.Content, {
tagName: 'p'
tagName: 'p',
className: props.className,
value: content
} );
Expand Down

0 comments on commit 6fc2152

Please sign in to comment.