Fix typo in doc

This commit is contained in:
Keito Uchiyama
2013-09-24 14:27:24 -07:00
committed by Paul O’Shannessy
parent 91976ea8b4
commit ec746d3a1b
+1 -1
View File
@@ -39,7 +39,7 @@ Consider the case when you wish to tell an `<input />` 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:
>