Merge pull request #1891 from robarnold/patch-1

Fix small issue in ReactContext comment
This commit is contained in:
Cheng Lou
2014-07-21 14:47:07 -07:00
+1 -1
View File
@@ -40,7 +40,7 @@ var ReactContext = {
* A typical use case might look like
*
* render: function() {
* var children = ReactContext.withContext({foo: 'foo'} () => (
* var children = ReactContext.withContext({foo: 'foo'}, () => (
*
* ));
* return <div>{children}</div>;