Skip to content

Commit

Permalink
Fix grammatical typo in docs
Browse files Browse the repository at this point in the history
A URL is correct, not An URL
  • Loading branch information
adebiyial committed Oct 10, 2020
1 parent 841d4ef commit b9ab319
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api-reference/next/link.md
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference/next/router.md
Expand Up @@ -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'
Expand Down

0 comments on commit b9ab319

Please sign in to comment.