From 0625baaf00fd3c2bc8f1f2094b984a13ab84a6cb Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Mon, 8 Dec 2014 15:08:57 -0800 Subject: [PATCH] Add missing verb This adds a missing verb in JSX-in-depth doc. --- docs/02.1-jsx-in-depth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02.1-jsx-in-depth.md b/docs/02.1-jsx-in-depth.md index f83cc0fb..6964af40 100644 --- a/docs/02.1-jsx-in-depth.md +++ b/docs/02.1-jsx-in-depth.md @@ -29,7 +29,7 @@ var myDivElement =
; React.render(myDivElement, document.body); ``` -To render a React Component, just a local variable that starts with an upper-case letter: +To render a React Component, just create a local variable that starts with an upper-case letter: ```javascript var MyComponent = React.createClass({/*...*/});