From 05f174f726646e31b197cd58f57a7ba05ac97896 Mon Sep 17 00:00:00 2001 From: Ali Othmani Date: Mon, 23 Sep 2024 21:33:11 +0100 Subject: [PATCH] Fix the typo in the example comment for the fetch options.cache section. --- 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 3caeb8965b5f7..2ed1ca6b93a99 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 @@ -430,7 +430,7 @@ See the [`fetch` API Reference](/docs/app/api-reference/functions/fetch) for mor You can opt individual `fetch` into caching by setting the `cache` option to `force-cache`: ```jsx -// Opt out of caching +// Opt into caching fetch(`https://...`, { cache: 'force-cache' }) ```