Skip to content

Commit 494abcb

Browse files
authored
Merge pull request #64 from rmdashrfslash/main
Fixing typo in descriptions
2 parents 27f14e5 + 927381a commit 494abcb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/infrastructure/lib/distributed-load-testing-on-aws-stack.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ export class DLTStack extends Stack {
9595

9696
const existingSubnetA = new CfnParameter(this, 'ExistingSubnetA', {
9797
type: 'String',
98-
description: 'First exsiting subnet',
98+
description: 'First existing subnet',
9999
allowedPattern: '(?:^$|^subnet-[a-zA-Z0-9-]+)'
100100
});
101101

102102
const existingSubnetB = new CfnParameter(this, 'ExistingSubnetB', {
103103
type: 'String',
104-
description: 'Second exsiting subnet',
104+
description: 'Second existing subnet',
105105
allowedPattern: '(?:^$|^subnet-[a-zA-Z0-9-]+)'
106106
});
107107

source/infrastructure/test/__snapshots__/distributed-load-testing-on-aws-stack.test.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,12 @@ Object {
187187
},
188188
"ExistingSubnetA": Object {
189189
"AllowedPattern": "(?:^$|^subnet-[a-zA-Z0-9-]+)",
190-
"Description": "First exsiting subnet",
190+
"Description": "First existing subnet",
191191
"Type": "String",
192192
},
193193
"ExistingSubnetB": Object {
194194
"AllowedPattern": "(?:^$|^subnet-[a-zA-Z0-9-]+)",
195-
"Description": "Second exsiting subnet",
195+
"Description": "Second existing subnet",
196196
"Type": "String",
197197
},
198198
"ExistingVPCId": Object {

0 commit comments

Comments
 (0)