Skip to content

Commit

Permalink
chore: tweak docs language
Browse files Browse the repository at this point in the history
  • Loading branch information
ctjlewis committed Aug 17, 2022
1 parent fa73808 commit dbdac85
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/getting-started.md
Expand Up @@ -24,7 +24,7 @@ everything automatically for you.

### Interactive

You create a new project interactively by running:
You can interactively create a new project interactively by running:

```bash
npx create-next-app@latest
Expand All @@ -35,18 +35,17 @@ pnpm create next-app
```

You will be asked for the name of your project, and then whether you want to
configure it for use with **TypeScript**:
create a TypeScript project:

```
✔ Would you like to use TypeScript with this project? … No / Yes
```

Select **Yes** to install the necessary types and dependencies and configure
your project for use with TS.
Select **Yes** to install the necessary types/dependencies and create a new TS project.

### Non-interactive

You can also pass command line arguments to setup a new project. See
You can also pass command line arguments to setup a new project non-interactively. See
`create-next-app --help`:

```
Expand Down Expand Up @@ -91,7 +90,7 @@ npx create-next-app@latest --ts my-project
# or
yarn create next-app --js my-project
# or
pnpm create next-app --typescript my-project
pnpm create next-app --javascript my-project
```

After the installation is complete:
Expand Down

0 comments on commit dbdac85

Please sign in to comment.