From 84943e6fcee906c1d0257fd98b4f8f6ab96f0904 Mon Sep 17 00:00:00 2001 From: haramjeong <04harams77@gmail.com> Date: Fri, 18 Sep 2026 17:24:55 +0900 Subject: [PATCH 1/2] doc: document iterable input for AbortSignal.any Describe signals as an iterable of AbortSignals, matching the WebIDL sequence conversion and the existing iterable test. Signed-off-by: haramjeong <04harams77@gmail.com> Assisted-by: Codex --- doc/api/globals.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/globals.md b/doc/api/globals.md index a5998d14885d..62e1765ad466 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -138,7 +138,8 @@ added: - v18.17.0 --> -* `signals` {AbortSignal\[]} The `AbortSignal`s of which to compose a new `AbortSignal`. +* `signals` {Iterable} An iterable of `AbortSignal`s from which to compose a new + `AbortSignal`. Returns a new `AbortSignal` which will be aborted if any of the provided signals are aborted. Its [`abortSignal.reason`][] will be set to whichever From d651b980bbe10f4dca0f2aa6cf6a7bfd562f8955 Mon Sep 17 00:00:00 2001 From: Haram Jeong <91401364+haramj@users.noreply.github.com> Date: Tue, 22 Sep 2026 22:23:50 +0900 Subject: [PATCH 2/2] doc: convert '' to {} Co-authored-by: Antoine du Hamel --- doc/api/globals.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/globals.md b/doc/api/globals.md index 62e1765ad466..5b95fe7465ad 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -138,8 +138,8 @@ added: - v18.17.0 --> -* `signals` {Iterable} An iterable of `AbortSignal`s from which to compose a new - `AbortSignal`. +* `signals` {Iterable} An iterable of {AbortSignal}s from which to compose a new + {AbortSignal}. Returns a new `AbortSignal` which will be aborted if any of the provided signals are aborted. Its [`abortSignal.reason`][] will be set to whichever