From 20558952fb18725ad134a5148a873a30fcced31d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 3 Sep 2023 16:46:48 +0200 Subject: [PATCH] docs: refine code comments MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/utils/Utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index a2cb233a..e01aa75f 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -301,7 +301,7 @@ export const promiseWithTimeout = async ( /* This is intentional */ }, ): Promise => { - // Create a timeout promise that rejects in timeout milliseconds + // Creates a timeout promise that rejects in timeout milliseconds const timeoutPromise = new Promise((_, reject) => { setTimeout(() => { if (isPromisePending(promise)) { -- 2.34.1