Skip to content

Commit 6b49d47

Browse files
authored
docs: add missing dot (#39314)
Co-authored-by: spcma <46758907+spcma@users.noreply.github.com> ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have helpful link attached, see `contributing.md` ## Documentation / Examples - [x] Make sure the linting passes by running `pnpm lint` - [x] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)
1 parent 58b920d commit 6b49d47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Create two directories `pages` and `public` at the root of your application:
8484

8585
Next.js is built around the concept of [pages](/docs/basic-features/pages.md). A page is a [React Component](https://reactjs.org/docs/components-and-props.html) exported from a `.js`, `.jsx`, `.ts`, or `.tsx` file in the `pages` directory. You can even add [dynamic route](/docs/routing/dynamic-routes) parameters with the filename.
8686

87-
Inside the `pages` directory add the `index.js` file to get started. This is the page that is rendered when the user visits the root of your application
87+
Inside the `pages` directory add the `index.js` file to get started. This is the page that is rendered when the user visits the root of your application.
8888

8989
Populate `pages/index.js` with the following contents:
9090

0 commit comments

Comments
 (0)