[Docs] fix missing ' in data-fetching/fetching-caching-and-revalidating (#54058)

In https://nextjs.org/docs/app/building-your-application/data-fetching/fetching-caching-and-revalidating#opting-out-of-data-caching a single quote (`'`) is missing.

![CleanShot 2023-08-15 at 17 08 58](https://github.com/vercel/next.js/assets/179761/eccd5fc9-a2fd-4c11-968f-76fd33fc5317)
This commit is contained in:
Willi-m 2023-08-15 22:12:56 +08:00 committed by GitHub
parent cb432eb42d
commit baef523fb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,7 +240,7 @@ If an error is thrown while attempting to revalidate data, the last successfully
`fetch` requests are **not** cached if:
- The `cache: 'no-store` is added to `fetch` requests.
- The `cache: 'no-store'` is added to `fetch` requests.
- The `revalidate: 0` option is added to individual `fetch` requests.
- The `fetch` request is inside a Router Handler that uses the `POST` method.
- The `fetch` request comes after the usage of `headers` or `cookies`.