From 868ce74f81605aff784547e01554934ccfde52d8 Mon Sep 17 00:00:00 2001 From: paulhcsun <47882901+paulhcsun@users.noreply.github.com> Date: Wed, 3 Jan 2024 17:21:02 -0800 Subject: [PATCH] minor grammar change --- packages/aws-cdk-lib/core/lib/asset-staging.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/core/lib/asset-staging.ts b/packages/aws-cdk-lib/core/lib/asset-staging.ts index dce13f7d16ba9..e17a0f2c5422e 100644 --- a/packages/aws-cdk-lib/core/lib/asset-staging.ts +++ b/packages/aws-cdk-lib/core/lib/asset-staging.ts @@ -346,7 +346,7 @@ export class AssetStaging extends Construct { // directory after it has been moved to the staging directory if the hash is known before bundling. This way if bundling // is skipped because the bundling directory already exists we can still determine // the correct packaging type. - // If the hash is calculated after bundling we remove the temp dir now + // If the hash is calculated after bundling we remove the temp dir now. if (bundledAsset.packaging === FileAssetPackaging.FILE) { if (this.hashType === AssetHashType.OUTPUT || this.hashType === AssetHashType.BUNDLE) { fs.removeSync(path.dirname(bundledAsset.path));