From 3eb25ebafe8434945fecc12d6d07a8268e68957c 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/07.1-more-about-refs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/07.1-more-about-refs.md b/docs/07.1-more-about-refs.md index 19a5df6a..e6020f33 100644 --- a/docs/07.1-more-about-refs.md +++ b/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: >