From 8011112cc1db52f48c85b01875c3449bbe9e0805 Mon Sep 17 00:00:00 2001 From: David Percy Date: Mon, 22 Feb 2016 18:45:36 -0500 Subject: [PATCH] Fix inverted definition of Controlled component --- docs/docs/07-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/07-forms.md b/docs/docs/07-forms.md index 5f0c4ebdf0..2da8e35bb2 100644 --- a/docs/docs/07-forms.md +++ b/docs/docs/07-forms.md @@ -72,7 +72,7 @@ In this example, we are accepting the value provided by the user and updating th This would accept user input and truncate the value to the first 140 characters. -A **Controlled** component maintains its own internal state; the component renders purely based on props. +A **Controlled** component does not maintain its own internal state; the component renders purely based on props. ### Potential Issues With Checkboxes and Radio Buttons