Skip to content

Commit

Permalink
Rectify some spelling mistakes (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgermishuys authored Jan 5, 2022
1 parent 48df96d commit 4f0a23e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions nodejs/awsx/ec2/cidr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
4 changes: 2 additions & 2 deletions nodejs/awsx/ec2/vpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<pulumi.ProviderResource | undefined, Vpc>();

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<string>[] = [];
Expand Down

0 comments on commit 4f0a23e

Please sign in to comment.