Skip to content

Commit 0487cc8

Browse files
committed
Merge pull request #3 from paulshen/spellings
[docs] Fix couple minor typos/spelling
2 parents 5ec4542 + ef6754b commit 0487cc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/_js/examples/timer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var Timer = React.createClass({\n\
1717
render: function() {\n\
1818
return (\n\
1919
<div>\n\
20-
{'Seconds Ellapsed: ' + this.state.secondsElapsed}\n\
20+
{'Seconds Elapsed: ' + this.state.secondsElapsed}\n\
2121
</div>\n\
2222
);\n\
2323
}\n\

docs/docs/syntax.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ next: component-basics.html
1010
JSX is a JavaScript XML syntax extension recommended (but not required) for use
1111
with React.
1212

13-
JSX makes code that deeply nested React components more readable, and writing it
13+
JSX makes code that deeply nests React components more readable, and writing it
1414
feels like writing HTML. React documentation examples make use of JSX.
1515

1616
## The Transform

0 commit comments

Comments
 (0)