Skip to content

Commit 5e96bca

Browse files
authored
Apply suggestions from code review
1 parent ef43bb3 commit 5e96bca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

β€Ždocs/pages/docs/routing/middleware.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -344,15 +344,15 @@ export default createMiddleware({
344344
</Callout>
345345

346346
<details>
347-
<summary>How to revalidate localized pathnames?</summary>
347+
<summary>How can I revalidate localized pathnames?</summary>
348348

349349
Depending on if a route is generated statically (at build time) or dynamically (at runtime), [`revalidatePath`](https://nextjs.org/docs/app/api-reference/functions/revalidatePath) needs to be called either for the localized or the internal pathname.
350350

351351
Let's take an example with this folder structure:
352352
```
353353
app
354-
└── [locale]/
355-
└── news/
354+
└── [locale]
355+
└── news
356356
└── [slug]
357357
```
358358

@@ -373,7 +373,7 @@ export default createMiddleware({
373373
});
374374
```
375375

376-
Depending on whether `some-article` was included in [`generateStaticParams`](https://nextjs.org/docs/app/api-reference/functions/generate-static-params) or not, you can invalidate the route like this:
376+
Depending on whether `some-article` was included in [`generateStaticParams`](https://nextjs.org/docs/app/api-reference/functions/generate-static-params) or not, you can revalidate the route like this:
377377

378378
```tsx
379379
// Statically generated at build time

0 commit comments

Comments
Β (0)