From 8fe2d7d31ada0ef6c66660b2c06e129f4399fa82 Mon Sep 17 00:00:00 2001 From: Lakshya Singh Date: Mon, 25 Jul 2022 15:04:35 +0530 Subject: [PATCH] docs: grammar fix (#6106) --- docs/content/migration/7.component-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/migration/7.component-options.md b/docs/content/migration/7.component-options.md index e555507b37..37cd270aaf 100644 --- a/docs/content/migration/7.component-options.md +++ b/docs/content/migration/7.component-options.md @@ -59,7 +59,7 @@ With Nuxt 3, you can perform this data fetching using composables in your `setup You can now use `post` inside of your Nuxt 3 template, or call `refresh` to update the data. ::alert{type=info} -Despite the names, `useFetch` is not a direct replacement of the `fetch()` hook. Rather, `useAsyncData` replaces both hooks and is most customizable; it can do more than simply fetching data from an endpoint. `useFetch` is a convenience wrapper around `useAsyncData` for simply fetching data from an endpoint. +Despite the names, `useFetch` is not a direct replacement of the `fetch()` hook. Rather, `useAsyncData` replaces both hooks and is more customizable; it can do more than simply fetching data from an endpoint. `useFetch` is a convenience wrapper around `useAsyncData` for simply fetching data from an endpoint. :: ### Migration