From ed3aea924da0909e28b93fdf0f0b69c7c912495b Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Wed, 23 Aug 2023 11:24:31 -0500 Subject: [PATCH] docs: Remove unneeded word in caching docs (#54451) --- docs/02-app/01-building-your-application/04-caching/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/01-building-your-application/04-caching/index.mdx b/docs/02-app/01-building-your-application/04-caching/index.mdx index abc9453b73..5081049437 100644 --- a/docs/02-app/01-building-your-application/04-caching/index.mdx +++ b/docs/02-app/01-building-your-application/04-caching/index.mdx @@ -490,7 +490,7 @@ For example, you can set a tag when fetching data: fetch(`https://...`, { next: { tags: ['a', 'b', 'c'] } }) ``` -Then, then call `revalidateTag` with a tag to purge the cache entry: +Then, call `revalidateTag` with a tag to purge the cache entry: ```jsx // Revalidate entries with a specific tag