From 83e5e9bedf4468f418b717a6a090d2b50500b5b2 Mon Sep 17 00:00:00 2001 From: robarnold Date: Sat, 19 Jul 2014 19:09:35 -0700 Subject: [PATCH] Fix small issue in ReactContext comment Noticed this the other day and meant to fix it. --- src/core/ReactContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ReactContext.js b/src/core/ReactContext.js index 18f8206fbc..18ce40fe3b 100644 --- a/src/core/ReactContext.js +++ b/src/core/ReactContext.js @@ -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
{children}
;