refactor: explicity extends Task for MessageValue type
[poolifier.git] / src / pools / selection-strategies / round-robin-worker-choice-strategy.ts
index eda00c7582e305a57c10318d2878c24045fe21fc..80e958a406fa2209ce1c20eded5b8e9b79e9ca0b 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 RoundRobinWorkerChoiceStrategy<
     Worker extends IWorker,