refactor: explicity extends Task for MessageValue type
[poolifier.git] / src / pools / selection-strategies / worker-choice-strategy-context.ts
index 34aa332e39677883c066c9bd823276e8e56e886c..91441ace5a58d8ca6756a21b679a3dd13b73df55 100644 (file)
@@ -19,7 +19,7 @@ import { WeightedRoundRobinWorkerChoiceStrategy } from './weighted-round-robin-w
  *
  * @typeParam Worker - Type of worker.
  * @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 WorkerChoiceStrategyContext<
   Worker extends IWorker,