From e5d3809a1257001dde331c074b61c5ddb01a5844 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 21 Jul 2023 16:24:14 +0200 Subject: [PATCH] docs: refine code comment MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/utility-types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utility-types.ts b/src/utility-types.ts index c4a8bf11..be0ed287 100644 --- a/src/utility-types.ts +++ b/src/utility-types.ts @@ -125,7 +125,7 @@ export interface MessageValue } /** - * An object holding the execution response promise resolve/reject callbacks. + * An object holding the task execution response promise resolve/reject callbacks. * * @typeParam Response - Type of execution response. This can only be structured-cloneable data. * @internal @@ -140,7 +140,7 @@ export interface PromiseResponseWrapper { */ readonly reject: (reason?: unknown) => void /** - * The worker node key handling the execution. + * The worker node key executing the task. */ readonly workerNodeKey: number } -- 2.34.1