Generate documentation
[poolifier.git] / src / pools / selection-strategies / round-robin-worker-choice-strategy.ts
index ea1ad5673ba7dc7bd4a7b2f75f0af9dd1ff7a165..69bffea13f05e8644d0f1c7441a8229ef3386e3e 100644 (file)
@@ -18,7 +18,7 @@ export class RoundRobinWorkerChoiceStrategy<
    */
   private nextWorkerIndex: number = 0
 
-  /** @inheritdoc */
+  /** @inheritDoc */
   public choose (): Worker {
     const chosenWorker = this.pool.workers[this.nextWorkerIndex]
     this.nextWorkerIndex =