fix: update worker choice internals without tasks queuing
[poolifier.git] / src / pools / thread / fixed.ts
index a9d8f685fec3432db4fc6829dabcfd84f146babe..d843144c633fd99d5becf18ad1d5918ab570eaf6 100644 (file)
@@ -37,8 +37,6 @@ export type ThreadWorkerWithMessageChannel = Worker & Draft<MessageChannel>
  *
  * It is possible to perform tasks in sync or asynchronous mode as you prefer.
  *
- * This pool selects the threads 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 [Alessandro Pio Ardizio](https://github.com/pioardi)