From 97542e7a994f4c63f57e5841d62d5bb78f636459 Mon Sep 17 00:00:00 2001 From: NE-SmallTown Date: Tue, 18 Apr 2017 21:42:40 +0800 Subject: [PATCH] [Documentation] Impreove the react-component section of doc (#9349) * Impreove react-component of doc [#9304](https://github.com/facebook/react/issues/9304) * update description * add missing space (cherry picked from commit 359f5d276ffd4da96e3a00d7245da9fad004ba0d) --- 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 67efaae6a7..2c1b0770cb 100644 --- a/docs/docs/reference-react-component.md +++ b/docs/docs/reference-react-component.md @@ -136,7 +136,7 @@ If you "fork" props by using them for state, you might also want to implement [` componentWillMount() ``` -`componentWillMount()` is invoked immediately before mounting occurs. It is called before `render()`, therefore setting state in this method will not trigger a re-rendering. Avoid introducing any side-effects or subscriptions in this method. +`componentWillMount()` is invoked immediately before mounting occurs. It is called before `render()`, therefore setting state synchronously in this method will not trigger a re-rendering. Avoid introducing any side-effects or subscriptions in this method. This is the only lifecycle hook called on server rendering. Generally, we recommend using the `constructor()` instead.