Browse Source

Update concurrent-mode-suspense.md (#2495)

According to [ProofreadNOW](https://www.proofreadnow.com/blog/bid/101485/If-I-Were-or-If-I-Was-Which-is-Correct),
> Guideline: Use were (instead of was) in statements that are contrary to fact.
main
Kevin Sullivan 5 years ago
committed by GitHub
parent
commit
705cacfa70
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      content/docs/concurrent-mode-suspense.md

2
content/docs/concurrent-mode-suspense.md

@ -119,7 +119,7 @@ So what's the point of Suspense? There are a few ways we can answer this:
* **It lets you orchestrate intentionally designed loading states.** It doesn't say _how_ the data is fetched, but it lets you closely control the visual loading sequence of your app.
* **It helps you avoid race conditions.** Even with `await`, asynchronous code is often error-prone. Suspense feels more like reading data *synchronously* — as if it was already loaded.
* **It helps you avoid race conditions.** Even with `await`, asynchronous code is often error-prone. Suspense feels more like reading data *synchronously* — as if it were already loaded.
## Using Suspense in Practice {#using-suspense-in-practice}

Loading…
Cancel
Save