docs: fix typedoc generation with inheritance
[poolifier.git] / src / pools / cluster / dynamic.ts
index 79f684cbd39a2990f0b7f968e41cf7dda9d70569..6171ce4e8a4b51991294677b680e9373d8e64313 100644 (file)
@@ -34,17 +34,17 @@ export class DynamicClusterPool<
     super(min, filePath, opts)
   }
 
-  /** {@inheritDoc} */
+  /** @inheritDoc */
   public get type (): PoolType {
     return PoolType.DYNAMIC
   }
 
-  /** {@inheritDoc} */
+  /** @inheritDoc */
   public get full (): boolean {
     return this.workers.length === this.max
   }
 
-  /** {@inheritDoc} */
+  /** @inheritDoc */
   public get busy (): boolean {
     return this.full && this.findFreeWorkerKey() === -1
   }