refactor: explicity extends Task for MessageValue type
[poolifier.git] / src / pools / selection-strategies / fair-share-worker-choice-strategy.ts
index e1d123a994aa77f5d41ce10ccf2a4f3584b6c926..3f4e95249497897d0f718c4192880fecdc695129 100644 (file)
@@ -19,7 +19,7 @@ interface WorkerVirtualTaskTimestamp {
  *
  * @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 FairShareWorkerChoiceStrategy<
     Worker extends IWorker,