Skip to content

Commit b2bd07a

Browse files
authored
Merge pull request #3880 from k-zhou/patch-2
suggestion to amend part 1a
2 parents d01cbc5 + 489b01a commit b2bd07a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/1/en/part1a.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ We will now start getting familiar with probably the most important topic of thi
1111

1212
The easiest way to get started by far is by using a tool called [Vite](https://vitejs.dev/).
1313

14-
Let's create an application called <i>part1</i>, navigate to its directory and install the libraries:
14+
Let's create an application called <i>introdemo</i>, navigate to its directory and install the libraries:
1515

1616
```bash
1717
# npm 6.x (outdated, but still used by some):
18-
npm create vite@latest part1 --template react
18+
npm create vite@latest introdemo --template react
1919

2020
# npm 7+, extra double-dash is needed:
21-
npm create vite@latest part1 -- --template react
21+
npm create vite@latest introdemo -- --template react
2222
```
2323

2424
```bash
25-
cd part1
25+
cd introdemo
2626
npm install
2727
```
2828

0 commit comments

Comments
 (0)