Generate documentation
[poolifier.git] / src / pools / thread / dynamic.ts
index a5b9eb7c37c49d945a23112ea9ee95832079ad58..929287c87508de7434fb72b3208e1deaba5ff846 100644 (file)
@@ -35,12 +35,12 @@ export class DynamicThreadPool<
     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
   }