From 0966e77a2e601aa2f374bb305a5305a4a1759b6d Mon Sep 17 00:00:00 2001 From: Kurt Furbush Date: Tue, 6 Jun 2017 12:59:44 -0400 Subject: [PATCH] Update reference-react-component.md (#9863) Grammatical edit to match same statement in state-and-lifecycle.html --- docs/docs/reference-react-component.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference-react-component.md b/docs/docs/reference-react-component.md index 98e5ffb1ee7d..b71b92a47adf 100644 --- a/docs/docs/reference-react-component.md +++ b/docs/docs/reference-react-component.md @@ -359,7 +359,7 @@ In particular, `this.props.children` is a special prop, typically defined by the The state contains data specific to this component that may change over time. The state is user-defined, and it should be a plain JavaScript object. -If you don't use it in `render()`, it shouldn't be on the state. For example, you can put timer IDs directly on the instance. +If you don't use it in `render()`, it shouldn't be in the state. For example, you can put timer IDs directly on the instance. See [State and Lifecycle](/react/docs/state-and-lifecycle.html) for more information about the state.