From 6e26c1b1f6e087c1da5b6f30dab76d7316f426c3 Mon Sep 17 00:00:00 2001 From: KIDANI Akito Date: Tue, 7 Jan 2025 03:28:50 +0900 Subject: [PATCH] docs(elasticloadbalancingv2): fix typos (#32721) ### Issue # (if applicable) N/A ### Reason for this change Fixed typos in the README.md ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.