From: Jérôme Benoit Date: Tue, 11 Jul 2023 20:44:26 +0000 (+0200) Subject: docs: refine code comment X-Git-Tag: v2.6.16~6 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=289cf7e3ae405d45f19ab9db913b52c69e097907;p=poolifier.git docs: refine code comment Signed-off-by: Jérôme Benoit --- diff --git a/src/worker/abstract-worker.ts b/src/worker/abstract-worker.ts index b16c886b..43cc4299 100644 --- a/src/worker/abstract-worker.ts +++ b/src/worker/abstract-worker.ts @@ -296,7 +296,7 @@ export abstract class AbstractWorker< } /** - * Sends to the main worker the ready response. + * Sends the ready response to the main worker. */ protected sendReadyResponse (): void { !this.isMain && this.sendToMainWorker({ ready: true, workerId: this.id })