diff --git a/packages/@aws-cdk/aws-ec2-alpha/lib/route.ts b/packages/@aws-cdk/aws-ec2-alpha/lib/route.ts index 3d2dc4a7c22ee..b6f9eb1ee12e4 100644 --- a/packages/@aws-cdk/aws-ec2-alpha/lib/route.ts +++ b/packages/@aws-cdk/aws-ec2-alpha/lib/route.ts @@ -329,7 +329,7 @@ export class VPNGatewayV2 extends Resource implements IRouteTarget { private readonly _attachment: CfnVPCGatewayAttachment; /** - * The VPN Gateway Route Propogation + * The VPN Gateway Route Propagation */ private readonly _routePropagation: CfnVPNGatewayRoutePropagation; @@ -696,7 +696,7 @@ export class Route extends Resource implements IRouteV2 { public readonly routeTable: IRouteTable; /** - * The type of router the route is targetting + * The type of router the route is targeting */ public readonly targetRouterType: RouterType; diff --git a/packages/@aws-cdk/aws-ec2-alpha/test/vpc-add-method.test.ts b/packages/@aws-cdk/aws-ec2-alpha/test/vpc-add-method.test.ts index cff02bacc1e1a..2e6f64caa20d5 100644 --- a/packages/@aws-cdk/aws-ec2-alpha/test/vpc-add-method.test.ts +++ b/packages/@aws-cdk/aws-ec2-alpha/test/vpc-add-method.test.ts @@ -365,7 +365,7 @@ describe('Vpc V2 with full control', () => { }); }); - test('Check vpngateway has routePropogation for input subnets', () => { + test('Check vpngateway has route Propagation for input subnets', () => { myVpc.enableVpnGatewayV2({ type: VpnConnectionType.IPSEC_1, vpnRoutePropagation: [{ subnetType: SubnetType.PUBLIC }], @@ -382,7 +382,7 @@ describe('Vpc V2 with full control', () => { }); }); - test('Throws error when no subnet identified for route propogation', () => { + test('Throws error when no subnet identified for route propagation', () => { expect(() => { myVpc.enableVpnGatewayV2({ type: VpnConnectionType.IPSEC_1,