From 539532a1d1773cd1dcf0840dbe420a125543d5c5 Mon Sep 17 00:00:00 2001 From: Scott Haseley Date: Mon, 1 May 2023 15:51:13 -0700 Subject: [PATCH 1/2] Update fetch spec for AbortSignal.any() changes --- index.bs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/index.bs b/index.bs index da6a50aed..79928736c 100644 --- a/index.bs +++ b/index.bs @@ -6999,9 +6999,8 @@ above [=WritableStream/set up=] algorithm: |stream|.[=WritableStream/[[controller]]=].[=WritableStreamDefaultController/[[signal]]=]. Specifications can [=AbortSignal/add=] or [=AbortSignal/remove=] algorithms to this {{AbortSignal}}, or consult whether it is [=AbortSignal/aborted=] and its [=AbortSignal/abort -reason=]. Specifications should not [=AbortSignal/signal abort=] or make it [=AbortSignal/follow=] -another {{AbortSignal}}, as that would interfere with the normal use of this signal to respond to -the stream being [=abort a writable stream|aborted=]. +reason=]. Specifications should not [=AbortSignal/signal abort=], as that would interfere with the +normal use of this signal to respond to the stream being [=abort a writable stream|aborted=].

The usual usage is, after [=WritableStream/setting up=] the {{WritableStream}}, [=AbortSignal/add=] an algorithm to its [=WritableStream/signal=], which aborts any ongoing write From d4a04ff0a56ace448ab1c4793b21b529c3eb3802 Mon Sep 17 00:00:00 2001 From: Scott Haseley Date: Wed, 3 May 2023 11:23:45 -0700 Subject: [PATCH 2/2] Use 'must not' for signal abort warning --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index 79928736c..4fd8b1120 100644 --- a/index.bs +++ b/index.bs @@ -6999,7 +6999,7 @@ above [=WritableStream/set up=] algorithm: |stream|.[=WritableStream/[[controller]]=].[=WritableStreamDefaultController/[[signal]]=]. Specifications can [=AbortSignal/add=] or [=AbortSignal/remove=] algorithms to this {{AbortSignal}}, or consult whether it is [=AbortSignal/aborted=] and its [=AbortSignal/abort -reason=]. Specifications should not [=AbortSignal/signal abort=], as that would interfere with the +reason=]. Specifications must not [=AbortSignal/signal abort=], as that would interfere with the normal use of this signal to respond to the stream being [=abort a writable stream|aborted=].

The usual usage is, after [=WritableStream/setting up=] the {{WritableStream}},