docs: fix typedoc generation with inheritance
[poolifier.git] / src / pools / selection-strategies / round-robin-worker-choice-strategy.ts
index 91ceb5bc9ade9e8d8df8be244c54fd105b76771a..9cc966c47956a9a1689f82a435168127bbfbd272 100644 (file)
@@ -21,13 +21,13 @@ export class RoundRobinWorkerChoiceStrategy<
    */
   private nextWorkerId: number = 0
 
-  /** {@inheritDoc} */
+  /** @inheritDoc */
   public reset (): boolean {
     this.nextWorkerId = 0
     return true
   }
 
-  /** {@inheritDoc} */
+  /** @inheritDoc */
   public choose (): number {
     const chosenWorkerKey = this.nextWorkerId
     this.nextWorkerId =
@@ -37,7 +37,7 @@ export class RoundRobinWorkerChoiceStrategy<
     return chosenWorkerKey
   }
 
-  /** {@inheritDoc} */
+  /** @inheritDoc */
   public remove (workerKey: number): boolean {
     if (this.nextWorkerId === workerKey) {
       if (this.pool.workers.length === 0) {