refactor: explicity extends Task for MessageValue type
[poolifier.git] / src / pools / selection-strategies / less-used-worker-choice-strategy.ts
index acf1e5036aeed44a7ae8f6d11394160b95aec10a..166de7069f60f32d1f396576fd8416e9ba87907d 100644 (file)
@@ -7,7 +7,7 @@ import type { IWorkerChoiceStrategy } from './selection-strategies-types'
  *
  * @typeParam Worker - Type of worker which manages the strategy.
  * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
- * @typeParam Response - Type of response of execution. This can only be serializable data.
+ * @typeParam Response - Type of execution response. This can only be serializable data.
  */
 export class LessUsedWorkerChoiceStrategy<
     Worker extends IWorker,