Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed Nov 1, 2024
1 parent 932e725 commit f603cca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27644,7 +27644,7 @@ function main() {
// Find `target` folder.
const targetPath = yield locateTarget(manifestPath);
core.info(`Sweeping files from ${targetPath}.`);
// An array of promises that will be awaited on all at once. These promi9ses return the size of
// An array of promises that will be awaited on all at once. These promises return the size of
// the file that they deleted.
const operationHandles = [];
// Iterate recursively over all files in `target`.
Expand Down
2 changes: 1 addition & 1 deletion src/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async function main() {
const targetPath = await locateTarget(manifestPath);
core.info(`Sweeping files from ${targetPath}.`);

// An array of promises that will be awaited on all at once. These promi9ses return the size of
// An array of promises that will be awaited on all at once. These promises return the size of
// the file that they deleted.
const operationHandles: Promise<number>[] = [];

Expand Down

0 comments on commit f603cca

Please sign in to comment.