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 +}