Skip to content

Commit

Permalink
docs: fix grammar issue in "Data Fetching Patterns" (#58056)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anisi authored Nov 16, 2023
1 parent f8343e8 commit 8d9282c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ This will prevent the whole route from being blocked by data fetching, and the u
>
> An alternative approach to prevent waterfalls is to fetch data globally, at the root of your application, but this will block rendering for all route segments beneath it until the data has finished loading. This can be described as "all or nothing" data fetching. Either you have the entire data for your page or application, or none.
>
> Any fetch requests with `await` will block rendering and data fetching for the entire tree beneath it, unless they are wrapped in a `<Suspense>` boundary or `loading.js` is used. Another alternative is use [parallel data fetching](#parallel-data-fetching) or the [preload pattern](#preloading-data).
> Any fetch requests with `await` will block rendering and data fetching for the entire tree beneath it, unless they are wrapped in a `<Suspense>` boundary or `loading.js` is used. Another alternative is to use [parallel data fetching](#parallel-data-fetching) or the [preload pattern](#preloading-data).
#### Parallel Data Fetching

Expand Down

0 comments on commit 8d9282c

Please sign in to comment.