Skip to content

Commit f351e06

Browse files
authored
docs: remove unnecessary $ that begins each line of code for copy/paste (#19768)
Removing $ allows users to easily copy/paste the code blocks, otherwise they have to remove $ on each line of the paste. ---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/master/INTEGRATION_TESTS.md)? * [ ] Did you use `cdk-integ` to deploy the infrastructure and generate the snapshot (i.e. `cdk-integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent c852239 commit f351e06

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -79,17 +79,17 @@ For a detailed walkthrough, see the [tutorial](https://docs.aws.amazon.com/cdk/l
7979
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/)
8080

8181
```console
82-
$ npm i -g aws-cdk
82+
npm i -g aws-cdk
8383
```
8484

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

8787
Initialize a project:
8888

8989
```console
90-
$ mkdir hello-cdk
91-
$ cd hello-cdk
92-
$ cdk init sample-app --language=typescript
90+
mkdir hello-cdk
91+
cd hello-cdk
92+
cdk init sample-app --language=typescript
9393
```
9494

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

115115
```console
116-
$ cdk deploy
116+
cdk deploy
117117
```
118118

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

0 commit comments

Comments
 (0)