From: Jérôme Benoit Date: Mon, 8 May 2023 11:49:07 +0000 (+0200) Subject: docs: refine code comments X-Git-Tag: v2.4.13~4 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=61aa11a689c901461fbf2c04de5666689cd78f08;p=poolifier.git docs: refine code comments Signed-off-by: Jérôme Benoit --- diff --git a/src/pools/pool.ts b/src/pools/pool.ts index 49123f546..0a015476f 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -145,7 +145,7 @@ export interface IPool< */ readonly emitter?: PoolEmitter /** - * Executes the function specified in the worker constructor with the task data input parameter. + * Executes the specified function in the worker constructor with the task data input parameter. * * @param data - The task input data for the specified worker function. This can only be serializable data. * @param name - The name of the worker function to execute. If not specified, the default worker function will be executed.