Skip to content

Commit

Permalink
Merge pull request #2679 from tschaub/patch-1
Browse files Browse the repository at this point in the history
Add missing verb in docs
  • Loading branch information
zpao committed Dec 16, 2014
1 parent b82a3c5 commit 3e17992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/02.1-jsx-in-depth.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var myDivElement = <div className="foo" />;
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({/*...*/});
Expand Down

0 comments on commit 3e17992

Please sign in to comment.