From b9ab319a2552c3080746b7fa3e4d548800551419 Mon Sep 17 00:00:00 2001 From: Adebiyi Adedotun Date: Sat, 10 Oct 2020 18:33:06 +0100 Subject: [PATCH] Fix grammatical typo in docs A URL is correct, not An URL --- docs/api-reference/next/link.md | 2 +- docs/api-reference/next/router.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api-reference/next/link.md b/docs/api-reference/next/link.md index 5a6aeec5740c6a6..d30238e4e221f7b 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 db22d750d5bd09a..296ef3ffe31dadf 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'