From d00d8c81cd61dc7ea24c43eccca9dc27973c3fea Mon Sep 17 00:00:00 2001 From: Michael Sinov Date: Sun, 20 Nov 2016 04:19:16 +1000 Subject: [PATCH] update react-without-es6.md (#8351) --- docs/react-without-es6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/react-without-es6.md b/docs/react-without-es6.md index 291ef8fd..3921f0f2 100644 --- a/docs/react-without-es6.md +++ b/docs/react-without-es6.md @@ -162,7 +162,7 @@ Please note that the syntax above is **experimental** and the syntax may change, If you'd rather play it safe, you have a few options: * Bind methods in the constructor. -* Use arrow functions, e.g. `onClick={(e) => this.handleClick(e)})`. +* Use arrow functions, e.g. `onClick={(e) => this.handleClick(e)}`. * Keep using `React.createClass()`. ## Mixins