From f603ccabd6e7ae3e1e373a7846423543f6cd4149 Mon Sep 17 00:00:00 2001 From: BD103 <59022059+BD103@users.noreply.github.com> Date: Fri, 1 Nov 2024 14:02:15 -0400 Subject: [PATCH] fix: typo --- dist/post/index.js | 2 +- src/post.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/post/index.js b/dist/post/index.js index 89d2431..ec7c784 100644 --- a/dist/post/index.js +++ b/dist/post/index.js @@ -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`. diff --git a/src/post.ts b/src/post.ts index 0d28595..c5d9039 100644 --- a/src/post.ts +++ b/src/post.ts @@ -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[] = [];