From 9c020d9a04b847bd95786e149f55229e6e8b5475 Mon Sep 17 00:00:00 2001 From: Julian Krispel-Samsel Date: Sat, 16 Jul 2016 01:02:03 +0200 Subject: [PATCH] Typos (#95) --- examples/rich-text/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/rich-text/index.js b/examples/rich-text/index.js index cf4f4a165..85ac82864 100644 --- a/examples/rich-text/index.js +++ b/examples/rich-text/index.js @@ -12,10 +12,10 @@ import keycode from 'keycode' const NODES = { 'block-quote': props =>
{props.children}
, - 'bulleted-list': props => , + 'bulleted-list': props => , 'heading-one': props =>

{props.children}

, 'heading-two': props =>

{props.children}

, - 'list-item': props =>
  • {props.chidlren}
  • , + 'list-item': props =>
  • {props.children}
  • , 'numbered-list': props =>
      {props.children}
    }