From b26e766ffc4118260ac7b68db9c7d9d06a796615 Mon Sep 17 00:00:00 2001 From: Furkan Akkurt Date: Fri, 19 Jan 2024 21:37:31 +0300 Subject: [PATCH] docs(ec2): fix typo in launch template (#28758) While working on a project in which we create a launch template using the aws-ec2 module, I encountered a typo in the docstring, in which the word "SSH" had been typed as "SSK". This pull request aims to replace the word "SSK" with "SSH". ---- *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-ec2/lib/launch-template.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts b/packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts index a245ea35fee2c..04ec805533bd9 100644 --- a/packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts +++ b/packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts @@ -338,7 +338,7 @@ export interface LaunchTemplateProps { readonly keyName?: string; /** - * The SSK keypair to grant access to the instance. + * The SSH keypair to grant access to the instance. * * @default - No SSH access will be possible. */