Skip to content

Commit 877d00d

Browse files
committed
Add missing verb
This adds a missing verb in JSX-in-depth doc.
1 parent ba95ce7 commit 877d00d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/docs/02.1-jsx-in-depth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var myDivElement = <div className="foo" />;
2929
React.render(myDivElement, document.body);
3030
```
3131

32-
To render a React Component, just a local variable that starts with an upper-case letter:
32+
To render a React Component, just create a local variable that starts with an upper-case letter:
3333

3434
```javascript
3535
var MyComponent = React.createClass({/*...*/});

0 commit comments

Comments
 (0)