From 99858d70448ff9723332831b6cc171324dc2b08b Mon Sep 17 00:00:00 2001 From: Joff Tiquez Date: Fri, 27 Jan 2023 12:29:47 +0800 Subject: [PATCH] docs: update getting-started.md (#1847) --- docs/guide/getting-started.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index 2c1d037c..3b4397d4 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -8,7 +8,7 @@ You can also try VitePress online on [StackBlitz](https://vitepress.new/). It ru VitePress is currently in `alpha` status. It is already suitable for out-of-the-box documentation use, but the config and theming API may still change between minor releases. ::: -## Step. 1: Create a new project +## Step 1: Create a new project Create and change into a new directory. @@ -22,7 +22,7 @@ Then, initialize with your preferred package manager. $ yarn init ``` -## Step. 2: Install VitePress +## Step 2: Install VitePress Add VitePress and Vue as dev dependencies for the project. @@ -53,7 +53,7 @@ Create your first document. $ mkdir docs && echo '# Hello VitePress' > docs/index.md ``` -## Step. 3: Boot up dev environment +## Step 3: Boot up dev environment Add some scripts to `package.json`. @@ -77,9 +77,9 @@ $ yarn docs:dev VitePress will start a hot-reloading development server at `http://localhost:5173`. -## Step. 4: Add more pages +## Step 4: Add more pages -Let's add another page to the site. Create a file name `getting-started.md` along with `index.md` you've created in Step. 2. Now your directory structure should look like this. +Let's add another page to the site. Create a file name `getting-started.md` along with `index.md` you've created in Step 2. Now your directory structure should look like this. ``` .