Skip to content

Commit

Permalink
docs(ssm): fix grammatical errors for StringParameter (#27004)
Browse files Browse the repository at this point in the history
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*
  • Loading branch information
msambol authored Sep 5, 2023
1 parent a0458b7 commit e628e6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/aws-cdk-lib/aws-ssm/lib/parameter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down Expand Up @@ -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;

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

0 comments on commit e628e6e

Please sign in to comment.