From c6acee7fd49a58462521ecb7f229c2cfccfcc051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Eschke?= Date: Wed, 27 Oct 2021 13:47:13 +0200 Subject: [PATCH] docs: fix typo (#1511) --- docs/content/3.docs/1.usage/1.data-fetching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 fb09f99682..e9ed2be9d7 100644 --- a/docs/content/3.docs/1.usage/1.data-fetching.md +++ b/docs/content/3.docs/1.usage/1.data-fetching.md @@ -80,7 +80,7 @@ const { data } = await useFetch('/api/count') ### Best practices -The data returned by `useAsyncData` will be stored inside the page payload. This mean that every key returned that is not used in your component will be added to the payload. +The data returned by `useAsyncData` will be stored inside the page payload. This means that every key returned that is not used in your component will be added to the payload. **We strongly recommend to only select the keys that you will use in your component.**