From 1775462fae55151fa244ea4236a025ffa34ff693 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sat, 2 Nov 2024 23:08:12 +0900 Subject: [PATCH] chore: update concurrency.ts compeleted -> completed --- maxun-core/src/utils/concurrency.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maxun-core/src/utils/concurrency.ts b/maxun-core/src/utils/concurrency.ts index eec7eb33..e1ebb87b 100644 --- a/maxun-core/src/utils/concurrency.ts +++ b/maxun-core/src/utils/concurrency.ts @@ -74,7 +74,7 @@ export default class Concurrency { /** * Waits until there is no running nor waiting job. \ * If the concurrency manager is idle at the time of calling this function, - * it waits until at least one job is compeleted (can be "presubscribed"). + * it waits until at least one job is completed (can be "presubscribed"). * @returns Promise, resolved after there is no running/waiting worker. */ waitForCompletion(): Promise { @@ -82,4 +82,4 @@ export default class Concurrency { this.waiting.push(res); }); } -} \ No newline at end of file +}