From 4d2633215c0cd6ce72ca5d1d7926181864a6ceb9 Mon Sep 17 00:00:00 2001 From: Alex Baumgertner Date: Mon, 7 Nov 2016 20:57:23 +0300 Subject: [PATCH] Fix method markdown highlight (#8218) --- docs/reference-react-component.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference-react-component.md b/docs/reference-react-component.md index fa8b5de5..ac809953 100644 --- a/docs/reference-react-component.md +++ b/docs/reference-react-component.md @@ -345,7 +345,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 on 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.