diff --git a/docs/pages/docs/environments/actions-metadata-route-handlers.mdx b/docs/pages/docs/environments/actions-metadata-route-handlers.mdx index 1c2ddf469..c086a0608 100644 --- a/docs/pages/docs/environments/actions-metadata-route-handlers.mdx +++ b/docs/pages/docs/environments/actions-metadata-route-handlers.mdx @@ -158,7 +158,7 @@ Next.js supports providing alternate URLs per language via the [`alternates` ent -If you're use the same pathnames for all locales (i.e. you're not using the [`pathnames`](/docs/routing#pathnames) setting), you can assemble the sitemap based on the pathnames that your app supports. +If you're using the same pathnames for all locales (i.e. you're not using the [`pathnames`](/docs/routing#pathnames) setting), you can assemble the sitemap based on the pathnames that your app supports. ```tsx import {MetadataRoute} from 'next'; diff --git a/examples/example-app-router/src/config.ts b/examples/example-app-router/src/config.ts index b8f53345e..aa3dccb42 100644 --- a/examples/example-app-router/src/config.ts +++ b/examples/example-app-router/src/config.ts @@ -8,10 +8,6 @@ export const pathnames = { '/pathnames': { en: '/pathnames', de: '/pfadnamen' - }, - '/users/[id]': { - en: '/users/[id]', - de: '/benutzer/[id]' } } satisfies Pathnames;