From aa4fc251e31d0652d6bb69c12272afb679cb9f6c Mon Sep 17 00:00:00 2001 From: paulhcsun <47882901+paulhcsun@users.noreply.github.com> Date: Wed, 3 Jan 2024 17:23:49 -0800 Subject: [PATCH] minor wording 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 e17a0f2c5422e..8991dfbe18634 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 temporary directory now. if (bundledAsset.packaging === FileAssetPackaging.FILE) { if (this.hashType === AssetHashType.OUTPUT || this.hashType === AssetHashType.BUNDLE) { fs.removeSync(path.dirname(bundledAsset.path));