fix: fix average computation
[poolifier.git] / src / pools / cluster / fixed.ts
index 592b3fe7d4234fe3df267074963b10301ee23707..a13a95ceea7aed2a01c98a4f8641408ad2c38741 100644 (file)
@@ -32,8 +32,6 @@ export interface ClusterPoolOptions extends PoolOptions<Worker> {
  *
  * It is possible to perform tasks in sync or asynchronous mode as you prefer.
  *
- * This pool selects the workers in a round robin fashion.
- *
  * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
  * @typeParam Response - Type of execution response. This can only be serializable data.
  * @author [Christopher Quadflieg](https://github.com/Shinigami92)