Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/learn/queueing-a-series-of-state-updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)`.

</Recap>

Expand Down Expand Up @@ -600,4 +600,4 @@ Now you know how this part of React works!

</Solution>

</Challenges>
</Challenges>