Skip to content

Commit 489b01a

Browse files
authored
suggestion to amend part 1a
Reason for change: Creating this project part1 also creates the similarly named folder, which would later be needed to group the other projects under part 1. This might create confusion if people were not careful with their file management. For this reason I suggest changing the demonstration project name to "introdemo" or anything other than "part1".
1 parent d01cbc5 commit 489b01a

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)