Skip to content

Commit cebf6cd

Browse files
Fix minor typos and broken links.
1 parent f0f5bbc commit cebf6cd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

v2/guide/home.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ func NewMyEcsConstructStack(scope constructs.Construct, id string, props *MyEcsC
255255
----
256256
====
257257

258-
This class produces an {aws} CloudFormation link:https://github.com/awsdocs/aws-cdk-guide/blob/main/doc_source/my_ecs_construct-stack.yaml[template of more than 500 lines]. Deploying the {aws} CDK app produces more than 50 resources of the following types:
258+
This class produces an {aws} CloudFormation template of more than 500 lines. Deploying the {aws} CDK app produces more than 50 resources of the following types:
259259

260260
* link:https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-eip.html[`{aws}::EC2::EIP`]
261261
* link:https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html[`{aws}::EC2::InternetGateway`]

v2/guide/ref-cli-cmd-synth.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If your app contains multiple stacks, `cdk synth` will synthesize the cloud asse
2828

2929
[source,none,subs="verbatim,attributes"]
3030
----
31-
$ cdk synthesize <arguments> <options>
31+
cdk synthesize <arguments> <options>
3232
----
3333

3434
[#ref-cli-cmd-synth-args]
@@ -82,7 +82,7 @@ _Default value_: `true`
8282
== Examples
8383

8484
[#ref-cli-cmd-synth-examples-1]
85-
=== Synthesize the cloud assembly for a CDK stack with logial ID MyStackName and output the CloudFormation template to stdout
85+
=== Synthesize the cloud assembly for a CDK stack with logical ID MyStackName and output the CloudFormation template to stdout
8686

8787
[source,none,subs="verbatim,attributes"]
8888
----

v2/guide/tokens.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class CdkDemoAppStack extends cdk.Stack {
4444
const myBucketName = myBucket.bucketName;
4545
4646
// Print the current value for the S3 bucket name at synthesis
47-
console.log("myBucketName: " + bucketName);
47+
console.log("myBucketName: " + myBucketName);
4848
}
4949
}
5050
----

v2/guide/work-with-cdk-csharp.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Some services' {aws} Construct Library support is in more than one module. For e
6262

6363
The {aws} CDK's main module, which you'll need in most {aws} CDK apps, is imported in C# code as `Amazon.CDK`. Modules for the various services in the {aws} Construct Library live under `Amazon.CDK.{aws}`. For example, the Amazon S3 module's namespace is `Amazon.CDK.{aws}.S3`.
6464

65-
We recommend writing C# `using` directives for the CDK core constructs and for each {aws} service you use in each of your C# source files. You may find it convenient to use an alias for a namespace or type to help resolve name conflicts. You can always use a type's fully-qualfiied name (including its namespace) without a `using` statement.
65+
We recommend writing C# `using` directives for the CDK core constructs and for each {aws} service you use in each of your C# source files. You may find it convenient to use an alias for a namespace or type to help resolve name conflicts. You can always use a type's fully-qualified name (including its namespace) without a `using` statement.
6666

6767
[#work-with-cdk-csharp-dependencies]
6868
== Managing dependencies in C#

0 commit comments

Comments
 (0)