Skip to content

Commit 8e4b0bc

Browse files
authored
Fix missing "in" typo (#3359)
1 parent c9a15fa commit 8e4b0bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/concurrent-mode-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function App() {
193193

194194
It took us only seven lines of code to add this transition:
195195

196-
* We've imported the `useTransition` Hook and used it the component that updates the state.
196+
* We've imported the `useTransition` Hook and used it in the component that updates the state.
197197
* We've passed `{timeoutMs: 3000}` to stay on the previous screen for at most 3 seconds.
198198
* We've wrapped our state update into `startTransition` to tell React it's okay to delay it.
199199
* We're using `isPending` to communicate the state transition progress to the user and to disable the button.

0 commit comments

Comments
 (0)