refactor: explicity extends Task for MessageValue type
[poolifier.git] / src / pools / selection-strategies / abstract-worker-choice-strategy.ts
index fd9cf1fb8b3f0499ed8c7615e805c1fc4ebffa31..ce7f9589ab5708975019706047b477f71007731f 100644 (file)
@@ -12,7 +12,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 abstract class AbstractWorkerChoiceStrategy<
   Worker extends IWorker,