Silence typedoc warnings
[poolifier.git] / src / pools / cluster / dynamic.ts
index ec177da666ff3e483cfcf4bf65d1cb7a65369cd7..f18f375c34ebdf5ffa9d6d3a04b2116c34e6dcd8 100644 (file)
@@ -23,7 +23,7 @@ export class DynamicClusterPool<
    * @param min Minimum number of workers which are always active.
    * @param max Maximum number of workers that can be created by this pool.
    * @param filePath Path to an implementation of a `ClusterWorker` file, which can be relative or absolute.
-   * @param [opts={}] Options for this dynamic cluster pool.
+   * @param opts Options for this dynamic cluster pool.
    */
   public constructor (
     min: number,
@@ -34,12 +34,12 @@ export class DynamicClusterPool<
     super(min, filePath, opts)
   }
 
-  /** @inheritdoc */
+  /** @inheritDoc */
   public get type (): PoolType {
     return PoolType.DYNAMIC
   }
 
-  /** @inheritdoc */
+  /** @inheritDoc */
   public get busy (): boolean {
     return this.workers.length === this.max
   }