From ec746d3a1b192ad24e51c71507db2f517b35bb50 Mon Sep 17 00:00:00 2001 From: Keito Uchiyama Date: Sun, 22 Sep 2013 15:09:36 -0700 Subject: [PATCH] Fix typo in doc --- docs/docs/07.1-more-about-refs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/07.1-more-about-refs.md b/docs/docs/07.1-more-about-refs.md index 19a5df6abc..e6020f3367 100644 --- a/docs/docs/07.1-more-about-refs.md +++ b/docs/docs/07.1-more-about-refs.md @@ -39,7 +39,7 @@ Consider the case when you wish to tell an `` element (that exists with ``` -Notice how, in this example, we want to "tell" the input something - something that it cannot infer from its props over time. In this case we want to "tell" it that it should now become focused. However, there are some challenges. What is returned from `render()`` is not your actual composition of "child" components, it is merely a *description* of the children at a particular instance in time - a snapshot, if you will. +Notice how, in this example, we want to "tell" the input something - something that it cannot infer from its props over time. In this case we want to "tell" it that it should now become focused. However, there are some challenges. What is returned from `render()` is not your actual composition of "child" components, it is merely a *description* of the children at a particular instance in time - a snapshot, if you will. > Note: >