From 9fd3cf29b3a3e8105088925226bdb1e3de96144f Mon Sep 17 00:00:00 2001 From: Nicholas Bergson-Shilcock Date: Sun, 15 Dec 2013 12:11:47 -0500 Subject: [PATCH] Fix typo (ot -> to) --- docs/09.2-form-input-binding-sugar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/09.2-form-input-binding-sugar.md b/docs/09.2-form-input-binding-sugar.md index a11edc07..8f706eea 100644 --- a/docs/09.2-form-input-binding-sugar.md +++ b/docs/09.2-form-input-binding-sugar.md @@ -62,7 +62,7 @@ var WithLink = React.createClass({ }); ``` -`LinkedStateMixin` adds a method ot your React component called `linkState()`. `linkState()` returns a `ReactLink` object which contains the current value of the React state and a callback to change it. +`LinkedStateMixin` adds a method to your React component called `linkState()`. `linkState()` returns a `ReactLink` object which contains the current value of the React state and a callback to change it. `ReactLink` objects can be passed up and down the tree as props, so it's easy (and explicit) to set up two-way binding between a component deep in the hierarchy and state that lives higher in the hierarchy.