From f2a56702d1250b67820748f64f26756d7d0bf42d Mon Sep 17 00:00:00 2001 From: andyu17 Date: Mon, 13 Jan 2025 15:27:37 +0900 Subject: [PATCH] chore(docs): fix typo --- packages/aws-cdk-lib/aws-rds/lib/database-secret.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/aws-rds/lib/database-secret.ts b/packages/aws-cdk-lib/aws-rds/lib/database-secret.ts index d19c458f490ad..f1253ca3ea349 100644 --- a/packages/aws-cdk-lib/aws-rds/lib/database-secret.ts +++ b/packages/aws-cdk-lib/aws-rds/lib/database-secret.ts @@ -99,7 +99,7 @@ export class DatabaseSecret extends secretsmanager.Secret { const hash = md5hash(JSON.stringify({ // Use here the options that influence the password generation. // If at some point we add other password customization options - // they sould be added here below (e.g. `passwordLength`). + // they should be added here below (e.g. `passwordLength`). excludeCharacters, })); const logicalId = `${Names.uniqueId(this)}${hash}`;