Skip to content

Commit

Permalink
chore(core): fix typo in assets.ts (#25548)
Browse files Browse the repository at this point in the history
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
kaizencc authored May 12, 2023
1 parent 0b538ae commit 0af161b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/aws-cdk-lib/core/lib/assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export interface FileAssetSource {
*
* The command should produce the location of a ZIP file on `stdout`.
*
* @default - Exactly one of `directory` and `executable` is required
* @default - Exactly one of `fileName` and `executable` is required
*/
readonly executable?: string[];

Expand All @@ -121,7 +121,7 @@ export interface FileAssetSource {
* source resides. This can be a path to a file or a directory, depending on the
* packaging type.
*
* @default - Exactly one of `directory` and `executable` is required
* @default - Exactly one of `fileName` and `executable` is required
*/
readonly fileName?: string;

Expand Down Expand Up @@ -386,4 +386,4 @@ export interface DockerCacheOption {
* };
*/
readonly params?: { [key: string]: string };
}
}

0 comments on commit 0af161b

Please sign in to comment.