Fix typo in release notes (#2982)

This commit is contained in:
Ophir LOJKINE 2022-11-27 01:51:03 +01:00 committed by GitHub
parent 6e3fa1b6c7
commit f4a0e2d0a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ Learn more at [Server-side rendering](/docs/advanced-topics/server-side-renderin
### Data fetching ### Data fetching
With SSR comes new ways of data-fetching. The newly added [`use_prepared_state!`](https://api.yew.rs/next/yew/functional/macro.use_prepared_state.html) hook can be used to fetch data while rendering on the and seemlessly use it in the component. With SSR comes new ways of data-fetching. The newly added [`use_prepared_state!`](https://api.yew.rs/next/yew/functional/macro.use_prepared_state.html) hook can be used to fetch data while rendering on the server and seemlessly use it in the component.
For client-side fetching, Yew now supports render-as-you-fetch approach with [Suspense](/docs/concepts/suspense). For client-side fetching, Yew now supports render-as-you-fetch approach with [Suspense](/docs/concepts/suspense).