Skip to content

Commit

Permalink
Removing $
Browse files Browse the repository at this point in the history
Removing $ allows users to easily copy/paste the code blocks, otherwise they have to remove $ on each line of the paste.
  • Loading branch information
stevebanik authored Apr 5, 2022
1 parent 053d22c commit b79ecf2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,17 @@ For a detailed walkthrough, see the [tutorial](https://docs.aws.amazon.com/cdk/l
Install or update the [AWS CDK CLI] from npm (requires [Node.js ≥ 14.15.0](https://nodejs.org/download/release/latest-v14.x/)). We recommend using a version in [Active LTS](https://nodejs.org/en/about/releases/)

```console
$ npm i -g aws-cdk
npm i -g aws-cdk
```

(See [Manual Installation](./MANUAL_INSTALLATION.md) for installing the CDK from a signed .zip file).

Initialize a project:

```console
$ mkdir hello-cdk
$ cd hello-cdk
$ cdk init sample-app --language=typescript
mkdir hello-cdk
cd hello-cdk
cdk init sample-app --language=typescript
```

This creates a sample project looking like this:
Expand All @@ -113,7 +113,7 @@ export class HelloCdkStack extends cdk.Stack {
Deploy this to your account:

```console
$ cdk deploy
cdk deploy
```

Use the `cdk` command-line toolkit to interact with your project:
Expand Down

0 comments on commit b79ecf2

Please sign in to comment.