Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(ec2-alpha): fix typos #32878

Merged
merged 3 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-ec2-alpha/lib/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-ec2-alpha/test/vpc-add-method.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }],
Expand All @@ -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,
Expand Down
Loading