Skip to content

Commit dd5449e

Browse files
committed
Merge branch 'suspense-what-activates' of github.com:aurorascharff/react.dev into suspense-what-activates
2 parents 3eb0f38 + 1ed5be2 commit dd5449e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/content/reference/react/Suspense.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ A Suspense boundary waits for its content to be ready before revealing it. Any o
5454

5555
#### Suspense-enabled frameworks {/*suspense-enabled-frameworks*/}
5656

57-
A *Suspense-enabled framework* gives you a way to read data in your component in a way that activates the closest Suspense boundaries. The exact way you load your data depends on your framework, and you'll find the details in its documentation. Under the hood, a Suspense-enabled framework maintains a cache of Promises and calls [`use`](/reference/react/use) to suspend on a Promise.
57+
A *Suspense-enabled framework* gives you a way to read data in your component in a way that activates the closest Suspense boundary. The exact way you load your data depends on your framework, and you'll find the details in its documentation. Under the hood, a Suspense-enabled framework maintains a cache of Promises and calls [`use`](/reference/react/use) to suspend on a Promise.
5858

5959
Without a framework, you can read a Promise with `use` directly, as long as the Promise is [cached so the same instance is reused across renders.](/reference/react/use#caching-promises-for-client-components)
6060

0 commit comments

Comments
 (0)