diff --git a/docs/api-reference/next/link.md b/docs/api-reference/next/link.md index 5a6aeec5740c..d30238e4e221 100644 --- a/docs/api-reference/next/link.md +++ b/docs/api-reference/next/link.md @@ -132,7 +132,7 @@ export default Home ## With URL Object -`Link` can also receive an URL object and it will automatically format it to create the URL string. Here's how to do it: +`Link` can also receive a URL object and it will automatically format it to create the URL string. Here's how to do it: ```jsx import Link from 'next/link' diff --git a/docs/api-reference/next/router.md b/docs/api-reference/next/router.md index db22d750d5bd..296ef3ffe31d 100644 --- a/docs/api-reference/next/router.md +++ b/docs/api-reference/next/router.md @@ -124,7 +124,7 @@ export default function Page() { #### With URL object -You can use an URL object in the same way you can use it for [`next/link`](/docs/api-reference/next/link.md#with-url-object). Works for both the `url` and `as` parameters: +You can use a URL object in the same way you can use it for [`next/link`](/docs/api-reference/next/link.md#with-url-object). Works for both the `url` and `as` parameters: ```jsx import { useRouter } from 'next/router'