From 46c6ac5bb03e2f3ca51469a312138ebfedcdaed7 Mon Sep 17 00:00:00 2001 From: Pete Hunt Date: Wed, 29 Jan 2014 12:45:46 -0800 Subject: [PATCH] Update 09.2-form-input-binding-sugar.md --- docs/docs/09.2-form-input-binding-sugar.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docs/09.2-form-input-binding-sugar.md b/docs/docs/09.2-form-input-binding-sugar.md index d2b0e3a4a3..29317f71dc 100644 --- a/docs/docs/09.2-form-input-binding-sugar.md +++ b/docs/docs/09.2-form-input-binding-sugar.md @@ -66,6 +66,8 @@ var WithLink = React.createClass({ `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. +Note that `` supports ReactLink for both `value` and `checked`. + ## Under the Hood There are two sides to `ReactLink`: the place where you create the `ReactLink` instance and the place where you use it. To prove how simple `ReactLink` is, let's rewrite each side separately to be more explicit.