Merge pull request #2679 from tschaub/patch-1

Add missing verb in docs
This commit is contained in:
Paul O’Shannessy
2014-12-09 14:04:57 -08:00
+1 -1
View File
@@ -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({/*...*/});