Skip to content

Commit ff68780

Browse files
authored
Fixed typo inside concurrent-mode-reference.md (#3716)
1 parent 6618bcc commit ff68780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/concurrent-mode-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For more information on Concurrent Mode, check out the [Concurrent Mode document
5959

6060
`Suspense` lets your components "wait" for something before they can render, showing a fallback while waiting.
6161

62-
In this example, `ProfileDetails` is waiting for an asynchronous API call to fetch some data. While we wait for `ProfileDetails` and `ProfilePhoto`, we will show the `Loading...` fallback instead. It is important to note that until all children inside `<Suspense>` has loaded, we will continue to show the fallback.
62+
In this example, `ProfileDetails` is waiting for an asynchronous API call to fetch some data. While we wait for `ProfileDetails` and `ProfilePhoto`, we will show the `Loading...` fallback instead. It is important to note that until all children inside `<Suspense>` have loaded, we will continue to show the fallback.
6363

6464
`Suspense` takes two props:
6565
* **fallback** takes a loading indicator. The fallback is shown until all of the children of the `Suspense` component have finished rendering.

0 commit comments

Comments
 (0)