refactor: cleanup variables namespace
[poolifier.git] / src / worker / abstract-worker.ts
index bfdff391cba86be9c9399837062ac8c5523b6087..93a36bad382fe5781f35d73b71a8169510b818ac 100644 (file)
@@ -303,7 +303,7 @@ export abstract class AbstractWorker<
   }
 
   /**
-   * Starts the worker alive check interval.
+   * Starts the worker aliveness check interval.
    */
   private startCheckAlive (): void {
     this.lastTaskTimestamp = performance.now()
@@ -315,7 +315,7 @@ export abstract class AbstractWorker<
   }
 
   /**
-   * Stops the worker alive check interval.
+   * Stops the worker aliveness check interval.
    */
   private stopCheckAlive (): void {
     this.aliveInterval != null && clearInterval(this.aliveInterval)