Apply dependencies update. (#369)
[poolifier.git] / src / pools / thread / dynamic.ts
index 16aeb4397795287d46e85a1278bf1f7357ee1ecb..932a0cd5ab40dcd454f90eaf8977f30b9194c2a0 100644 (file)
@@ -9,9 +9,8 @@ import { FixedThreadPool } from './fixed'
  * This thread pool creates new threads when the others are busy, up to the maximum number of threads.
  * When the maximum number of threads is reached, an event is emitted. If you want to listen to this event, use the pool's `emitter`.
  *
- * @template Data Type of data sent to the worker. This can only be serializable data.
- * @template Response Type of response of execution. This can only be serializable data.
- *
+ * @template DataType of data sent to the worker. This can only be serializable data.
+ * @template ResponseType of response of execution. This can only be serializable data.
  * @author [Alessandro Pio Ardizio](https://github.com/pioardi)
  * @since 0.0.1
  */