diff --git a/docs/01-app/03-building-your-application/01-routing/10-dynamic-routes.mdx b/docs/01-app/03-building-your-application/01-routing/10-dynamic-routes.mdx index 3f533d58fab07..bb24584a6dcc1 100644 --- a/docs/01-app/03-building-your-application/01-routing/10-dynamic-routes.mdx +++ b/docs/01-app/03-building-your-application/01-routing/10-dynamic-routes.mdx @@ -49,7 +49,7 @@ See the [generateStaticParams()](#generating-static-params) page to learn how to ## Good to know -- Since the `params` prop is a promise. You must use async/await or React's use function to access the values. +- Since the `params` prop is a promise, you must use async/await or React's use function to access the values. - In version 14 and earlier, `params` was a synchronous prop. To help with backwards compatibility, you can still access it synchronously in Next.js 15, but this behavior will be deprecated in the future. - Dynamic Segments are equivalent to [Dynamic Routes](/docs/pages/building-your-application/routing/dynamic-routes) in the `pages` directory.