From 390f6a5bb5d2e22d780f7a96dda5f8d37ac6d631 Mon Sep 17 00:00:00 2001 From: Cupid Valentine <53572196+valcosmos@users.noreply.github.com> Date: Thu, 4 Aug 2022 10:32:31 +0800 Subject: [PATCH] docs: add missing dot Co-authored-by: spcma <46758907+spcma@users.noreply.github.com> --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index ae2217319460..79c7cb801b27 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -84,7 +84,7 @@ Create two directories `pages` and `public` at the root of your application: 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. -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 +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. Populate `pages/index.js` with the following contents: