Generate documentation
[poolifier.git] / src / pools / abstract-pool-worker.ts
index f591b24ea20c1a3d507618d4b6ca71b7d1b9b382..a27d03ef2e273516f5e9f66ede408417cea4d53c 100644 (file)
@@ -10,14 +10,14 @@ import type {
  * Basic class that implement the minimum required for a pool worker.
  */
 export abstract class AbstractPoolWorker implements IPoolWorker {
-  /** @inheritdoc  */
+  /** @inheritDoc  */
   abstract on (event: 'message', handler: MessageHandler<this>): void
-  /** @inheritdoc  */
+  /** @inheritDoc  */
   abstract on (event: 'error', handler: ErrorHandler<this>): void
-  /** @inheritdoc  */
+  /** @inheritDoc  */
   abstract on (event: 'online', handler: OnlineHandler<this>): void
-  /** @inheritdoc  */
+  /** @inheritDoc  */
   abstract on (event: 'exit', handler: ExitHandler<this>): void
-  /** @inheritdoc  */
+  /** @inheritDoc  */
   abstract once (event: 'exit', handler: ExitHandler<this>): void
 }