Skip to content

Commit

Permalink
Fix missing file extensions in docs (#10251)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitowsky authored and Timer committed Jan 24, 2020
1 parent 45d5535 commit 5bcd33f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/routing/dynamic-routes.md
Expand Up @@ -60,7 +60,7 @@ Client-side navigations to a dynamic route can be handled with [`next/link`](/do

Dynamic routes can be extended to catch all paths by adding three dots (`...`) inside the brackets. For example:

- `pages/post/[...slug]` matches `/post/a`, but also `post/a/b`, `post/a/b/c` and so on.
- `pages/post/[...slug].js` matches `/post/a`, but also `post/a/b`, `post/a/b/c` and so on.

Matched parameters will be sent as a query parameter (`slug` in the example) to the page, and it will always be an array, so, the path `/post/a` will have the following `query` object:

Expand Down
2 changes: 1 addition & 1 deletion docs/routing/introduction.md
Expand Up @@ -30,7 +30,7 @@ To match a dynamic segment you can use the bracket syntax. This allows you to ma

- `pages/blog/[slug].js``/blog/:slug` (`/blog/hello-world`)
- `pages/[username]/settings.js``/:username/settings` (`/foo/settings`)
- `pages/post/[...all]``/post/*` (`/post/2020/id/title`)
- `pages/post/[...all].js``/post/*` (`/post/2020/id/title`)

## Linking between pages

Expand Down

0 comments on commit 5bcd33f

Please sign in to comment.