From e628e6ece34bc901a1980b8d0c7331ac3d976037 Mon Sep 17 00:00:00 2001 From: Michael Sambol Date: Mon, 4 Sep 2023 19:05:24 -0500 Subject: [PATCH] docs(ssm): fix grammatical errors for StringParameter (#27004) I found some grammatical errors while debugging an issue. ---- *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-ssm/lib/parameter.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/aws-cdk-lib/aws-ssm/lib/parameter.ts b/packages/aws-cdk-lib/aws-ssm/lib/parameter.ts index e5f65f01333a1..a5e8726127cd6 100644 --- a/packages/aws-cdk-lib/aws-ssm/lib/parameter.ts +++ b/packages/aws-cdk-lib/aws-ssm/lib/parameter.ts @@ -99,10 +99,10 @@ export interface ParameterOptions { readonly parameterName?: string; /** - * Indicates of the parameter name is a simple name (i.e. does not include "/" + * Indicates if the parameter name is a simple name (i.e. does not include "/" * separators). * - * This is only required only if `parameterName` is a token, which means we + * This is required only if `parameterName` is a token, which means we * are unable to detect if the name is simple or "path-like" for the purpose * of rendering SSM parameter ARNs. * @@ -168,7 +168,7 @@ abstract class ParameterBase extends Resource implements IParameter { /** * The encryption key that is used to encrypt this parameter. * - * * @default - default master key + * @default - default master key */ public readonly encryptionKey?: kms.IKey; @@ -337,10 +337,10 @@ export interface CommonStringParameterAttributes { readonly parameterName: string; /** - * Indicates of the parameter name is a simple name (i.e. does not include "/" + * Indicates if the parameter name is a simple name (i.e. does not include "/" * separators). * - * This is only required only if `parameterName` is a token, which means we + * This is required only if `parameterName` is a token, which means we * are unable to detect if the name is simple or "path-like" for the purpose * of rendering SSM parameter ARNs. *