diff --git a/CHANGELOG.md b/CHANGELOG.md index 66c467707..0878ff7e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ CHANGELOG * Extend the `volumeSize` of the default root block device in ECS autoscaling launch configuration to 32 GB to accomodate the latest default AMI snapshot size +* Fix spelling mistakes in the typescript `cidr` and `vpc` types. ## 0.32.0 (2021-09-29) diff --git a/nodejs/awsx/ec2/cidr.ts b/nodejs/awsx/ec2/cidr.ts index a9ff8214e..d7fd2c546 100644 --- a/nodejs/awsx/ec2/cidr.ts +++ b/nodejs/awsx/ec2/cidr.ts @@ -56,8 +56,8 @@ export class Cidr32Block { const trailing1Bits = 32 - subnetMaskLeading1Bits; const ipAddressesInBlock = 2 ** trailing1Bits; - // i.e. if we have 256 ipAddresses in the blockq and the starting ipAddress is - // 192.168.100.0, then then exclusive endIpAddress is 192.168.101.000. Or, inclusively + // i.e. if we have 256 ipAddresses in the block and the starting ipAddress is + // 192.168.100.0, then then exclusive endIpAddress is 192.168.101.0. Or, inclusively // the range is from 192.168.100.0 to 192.168.100.255. this.endIpAddressExclusive = startIpAddressInclusive + ipAddressesInBlock; } diff --git a/nodejs/awsx/ec2/vpc.ts b/nodejs/awsx/ec2/vpc.ts index 57f3b8fdf..f56e1e300 100644 --- a/nodejs/awsx/ec2/vpc.ts +++ b/nodejs/awsx/ec2/vpc.ts @@ -20,12 +20,12 @@ import * as topology from "./vpcTopology"; import * as utils from "../utils"; -// Mapping from provider to Vpc. 'undefined' is used to encode the Vpc we create when no provider +// Mapping from provider to Vpc. 'undefined' is used to encode the Vpc we create when no provider // is passed in. const providerToDefaultVpc = new Map(); class VpcData { - // Convenience properties. Equivalent to getting the IDs from teh corresponding XxxSubnets + // Convenience properties. Equivalent to getting the IDs from the corresponding XxxSubnets // properties. /** @internal */ public readonly publicSubnetIds: pulumi.Output[] = [];