diff --git a/packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md b/packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md index f55effba63631..d780b7bb410cb 100644 --- a/packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md +++ b/packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md @@ -212,7 +212,7 @@ const lb = new elbv2.ApplicationLoadBalancer(this, 'LB', { // The idle timeout value, in seconds idleTimeout: Duration.seconds(1000), - // Whether HTTP headers with header fields thatare not valid + // Whether HTTP headers with header fields that are not valid // are removed by the load balancer (true), or routed to targets dropInvalidHeaderFields: true, @@ -578,7 +578,7 @@ You can set cross-zone load balancing setting at the target group level by setti If not specified, it will use the load balancer's configuration. -For more infomation, see [How Elastic Load Balancing works](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html). +For more information, see [How Elastic Load Balancing works](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html). ```ts declare const vpc: ec2.Vpc; @@ -809,7 +809,7 @@ Node.of(resource).addDependency(targetGroup.loadBalancerAttached); You may look up load balancers and load balancer listeners by using one of the following lookup methods: -- `ApplicationLoadBalancer.fromlookup(options)` - Look up an application load +- `ApplicationLoadBalancer.fromLookup(options)` - Look up an application load balancer. - `ApplicationListener.fromLookup(options)` - Look up an application load balancer listener.