refactor: explicity extends Task for MessageValue type
[poolifier.git] / src / pools / selection-strategies / less-busy-worker-choice-strategy.ts
index d98732d66882a66e961a04dc49e4241ae5db6e7c..12e87ff2575649c6c1a9847d8dd24a9ad1e30f9a 100644 (file)
@@ -10,7 +10,7 @@ import type {
  *
  * @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 LessBusyWorkerChoiceStrategy<
     Worker extends IWorker,