From 542f20b82223bfceb3ce1b87f21f85185b60f46f Mon Sep 17 00:00:00 2001 From: Nick Thompson Date: Fri, 17 Jan 2014 12:44:21 -0800 Subject: [PATCH] Clarify componentWillMount behavior --- docs/docs/ref-03-component-specs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/ref-03-component-specs.md b/docs/docs/ref-03-component-specs.md index 91b354319c..bc18728ec1 100644 --- a/docs/docs/ref-03-component-specs.md +++ b/docs/docs/ref-03-component-specs.md @@ -87,7 +87,7 @@ Various methods are executed at specific points in a component's lifecycle. componentWillMount() ``` -Invoked immediately before rendering occurs. If you call `setState` within this method, `render()` will see the updated state and will be executed only once despite the state change. +Invoked once, immediately before the initial rendering occurs. If you call `setState` within this method, `render()` will see the updated state and will be executed only once despite the state change. ### Mounting: componentDidMount