From 2b0c95d3bedcb79686d148d7b51803655b3bfc56 Mon Sep 17 00:00:00 2001 From: arush Date: Mon, 14 Sep 2015 11:40:44 -0700 Subject: [PATCH] DOCS - typo in ref callback example deleted extra ending curly brace in arrow function --- docs/08.1-more-about-refs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/08.1-more-about-refs.md b/docs/08.1-more-about-refs.md index 8f1c8039d..dce066a8b 100644 --- a/docs/08.1-more-about-refs.md +++ b/docs/08.1-more-about-refs.md @@ -94,7 +94,7 @@ It's as simple as adding a `ref` attribute to anything returned from `render` by ```html render: function() { - return this._input = c} } />; + return this._input = c} />; }, componentDidMount: function() { this._input.focus();