Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
LeMurphant committed Jan 8, 2025
1 parent 8e57ac2 commit 3b87ea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/importContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { logError } from "../parser/utils.js";

try {
const { failed, succeeded } = await parse();
console.info(`Proccessed ${failed + succeeded} answers, ${failed} failed`);
console.info(`Processed ${failed + succeeded} answers, ${failed} failed`);
process.exit(failed == 0 ? 0 : 1);
} catch (e) {
await logError(e.message, {});
Expand Down
2 changes: 1 addition & 1 deletion bin/pruneImages.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ try {

const succeeded = responses.filter((res) => res.success).length;
const total = responses.length;
console.info(`Proccessed ${total} answers, ${total - succeeded} failed`);
console.info(`Processed ${total} answers, ${total - succeeded} failed`);
process.exit(total - succeeded);
} catch (e) {
await logError(e.message, {});
Expand Down

0 comments on commit 3b87ea1

Please sign in to comment.