Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the typo in the example comment for the fetch options.cache section. #70364

Merged
merged 3 commits into from
Sep 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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' })
```

Expand Down
Loading