Skip to content

Commit

Permalink
docs: Fix typo in cacheLife configs in use-cache docs (#71921)
Browse files Browse the repository at this point in the history
### What?
Typo fix in use-cache docs

### Why?
The world deserves less typos

### How?
I removed a number that should not have been there

Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com>
  • Loading branch information
t3dotgg and delbaoliveira authored Oct 28, 2024
1 parent ae9bb60 commit d27500c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/02-app/02-api-reference/01-directives/use-cache.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const nextConfig = {
biweekly: {
stale: 60 * 60 * 24 * 14, // 14 days
revalidate: 60 * 60 * 24, // 1 day
expire: 86400 60 * 60 * 24 * 14, // 14 days
expire: 60 * 60 * 24 * 14, // 14 days
},
},
},
Expand Down

0 comments on commit d27500c

Please sign in to comment.