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