From dd87e3b26d0b4d8cc65ca391dfd1f1da8683b25a Mon Sep 17 00:00:00 2001 From: Joel Gustafson Date: Wed, 1 Nov 2017 01:24:32 -0400 Subject: [PATCH] Update saving-and-loading-html-content.md (#1362) Fixed a typo: should be `paragraph`, not `code`. --- docs/walkthroughs/saving-and-loading-html-content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/walkthroughs/saving-and-loading-html-content.md b/docs/walkthroughs/saving-and-loading-html-content.md index 476ddccfa..683ee1da4 100644 --- a/docs/walkthroughs/saving-and-loading-html-content.md +++ b/docs/walkthroughs/saving-and-loading-html-content.md @@ -246,7 +246,7 @@ class App extends React.Component { renderNode = (props) => { switch (props.node.type) { case 'code': return
{props.children}
- case 'code': return

{props.children}

+ case 'paragraph': return

{props.children}

case 'quote': return
{props.children}
} }