Skip to content

Commit 9c020d9

Browse files
juliankrispelianstormtaylor
authored andcommitted
1 parent 5aee46f commit 9c020d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/rich-text/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import keycode from 'keycode'
1212

1313
const NODES = {
1414
'block-quote': props => <blockquote {...props.attributes}>{props.children}</blockquote>,
15-
'bulleted-list': props => <ul {...props.attributes}>{props.chidlren}</ul>,
15+
'bulleted-list': props => <ul {...props.attributes}>{props.children}</ul>,
1616
'heading-one': props => <h1 {...props.attributes}>{props.children}</h1>,
1717
'heading-two': props => <h2 {...props.attributes}>{props.children}</h2>,
18-
'list-item': props => <li {...props.attributes}>{props.chidlren}</li>,
18+
'list-item': props => <li {...props.attributes}>{props.children}</li>,
1919
'numbered-list': props => <ol {...props.attributes}>{props.children}</ol>
2020
}
2121

0 commit comments

Comments
 (0)