diff --git a/src/content/learn/queueing-a-series-of-state-updates.md b/src/content/learn/queueing-a-series-of-state-updates.md index 41de6529a6d..65301a32886 100644 --- a/src/content/learn/queueing-a-series-of-state-updates.md +++ b/src/content/learn/queueing-a-series-of-state-updates.md @@ -264,7 +264,7 @@ If you prefer more verbose code, another common convention is to repeat the full * Setting state does not change the variable in the existing render, but it requests a new render. * React processes state updates after event handlers have finished running. This is called batching. -* To update some state multiple times in one event, you can use `setNumber(n => n + 1)` updater function. +* To update some state multiple times in one event, you can use an updater function like `setNumber(n => n + 1)`. @@ -600,4 +600,4 @@ Now you know how this part of React works! - \ No newline at end of file +