From 6e22b51b26481f13065fc379285c14ac7c99ccdf Mon Sep 17 00:00:00 2001 From: Hugh Prior Date: Wed, 24 Jan 2018 18:32:58 +0100 Subject: [PATCH] Update faq-state.md (#549) Fix typo. --- content/docs/faq-state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/faq-state.md b/content/docs/faq-state.md index 4c6cd07f..f7a467a5 100644 --- a/content/docs/faq-state.md +++ b/content/docs/faq-state.md @@ -18,7 +18,7 @@ Here are some good resources for further reading on when to use `props` vs `stat * [Props vs State](https://github.com/uberVU/react-guide/blob/master/props-vs-state.md) * [ReactJS: Props vs. State](http://lucybain.com/blog/2016/react-state-vs-pros/) -### Why is `setState` is giving me the wrong value? +### Why is `setState` giving me the wrong value? Calls to `setState` are asynchronous - don't rely on `this.state` to reflect the new value immediately after calling `setState`. Pass an updater function instead of an object if you need compute values based on the current state (see below for details).