diff --git a/docs/02-app/02-api-reference/04-functions/generate-static-params.mdx b/docs/02-app/02-api-reference/04-functions/generate-static-params.mdx index c6a0a893c8c87..b36087ba2aad3 100644 --- a/docs/02-app/02-api-reference/04-functions/generate-static-params.mdx +++ b/docs/02-app/02-api-reference/04-functions/generate-static-params.mdx @@ -99,9 +99,9 @@ export function generateStaticParams() { // Three versions of this page will be statically generated // using the `params` returned by `generateStaticParams` -// - /product/a/1 -// - /product/b/2 -// - /product/c/3 +// - /products/a/1 +// - /products/b/2 +// - /products/c/3 export default function Page({ params, }: { @@ -123,9 +123,9 @@ export function generateStaticParams() { // Three versions of this page will be statically generated // using the `params` returned by `generateStaticParams` -// - /product/a/1 -// - /product/b/2 -// - /product/c/3 +// - /products/a/1 +// - /products/b/2 +// - /products/c/3 export default function Page({ params }) { const { category, product } = params // ...