diff --git a/docs/content/3.docs/1.usage/1.data-fetching.md b/docs/content/3.docs/1.usage/1.data-fetching.md index 39ae55d61d..b708712355 100644 --- a/docs/content/3.docs/1.usage/1.data-fetching.md +++ b/docs/content/3.docs/1.usage/1.data-fetching.md @@ -8,7 +8,7 @@ Nuxt provides `useFetch`, `useLazyFetch`, `useAsyncData` and `useLazyAsyncData` ## `useAsyncData` -Within your pages, components and plugins you can use `useAsyncData` to get access to data that resolves asynchronously. +Within your pages and components you can use `useAsyncData` to get access to data that resolves asynchronously. ### Usage @@ -57,7 +57,7 @@ This composable behaves identically to `useAsyncData` with the `lazy: true` opti ## `useFetch` -Within your pages, components and plugins you can use `useFetch` to get universally fetch from any URL. +Within your pages and components you can use `useFetch` to get universally fetch from any URL. This composable provides a convenient wrapper around `useAsyncData` and `$fetch` and automatically generates a key based on url and fetch options and infers API response type.