Skip to content

Commit 9091bee

Browse files
committed
Clarify documentation on Suspense-enabled frameworks
1 parent b33c637 commit 9091bee

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
@@ -223,7 +223,7 @@ A Suspense boundary waits for its content to be ready before revealing it. Any o
223223

224224
#### What is a Suspense-enabled framework? {/*what-is-a-suspense-enabled-framework*/}
225225

226-
A *Suspense-enabled framework* reads data with [`use`](/reference/react/use) under the hood, so that reading data in a component activates the nearest boundary. The exact way you load your data depends on your framework; you'll find the details in its documentation.
226+
A *Suspense-enabled framework* reads data with [`use`](/reference/react/use) under the hood, so that reading data in a component activates the nearest boundary. The exact way you load your data depends on your framework, and you'll find the details in its documentation.
227227

228228
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)
229229

0 commit comments

Comments
 (0)