From 103e7d43a625105b751af586954b3c36d88a041d Mon Sep 17 00:00:00 2001 From: Andrew Ray Date: Mon, 28 Nov 2016 15:11:12 -0800 Subject: [PATCH] Replacing invalid colon with semicolon --- lessons/05-wrapping-dom-libs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/05-wrapping-dom-libs.md b/lessons/05-wrapping-dom-libs.md index d605a1b..365ac20 100644 --- a/lessons/05-wrapping-dom-libs.md +++ b/lessons/05-wrapping-dom-libs.md @@ -94,7 +94,7 @@ var Dialog = React.createClass({ // start a new React render tree with our node and the children // passed in from above, this is the other side of the portal. - React.renderComponent(
{this.props.children}
, node): + React.renderComponent(
{this.props.children}
, node); } }); ```