From 4a102fb8a1ab4466335b3b3eb3b05f6e37f4894c Mon Sep 17 00:00:00 2001 From: Adam Rice Date: Fri, 22 Sep 2017 19:06:30 +0900 Subject: [PATCH] Include "erroring" in the list of states for WritableStream An "erroring" state was added to WritableStream in e7bf9293 (https://github.com/whatwg/streams/pull/721) but was not included in the description of the [[state]] slot. Add it. Also remove a stray '.' from the description of the [[writeRequests]] slot. --- index.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.bs b/index.bs index 3076f2c59..7bd6b9901 100644 --- a/index.bs +++ b/index.bs @@ -2746,7 +2746,7 @@ Instances of {{WritableStream}} are created with the internal slots described in \[[state]] A string containing the stream's current state, used internally; one of - "writable", "closed", or "errored" + "writable", "closed", "erroring", or "errored" \[[storedError]] @@ -2766,7 +2766,7 @@ Instances of {{WritableStream}} are created with the internal slots described in \[[writeRequests]] A List of promises representing the stream's internal queue of write requests not yet - processed by the underlying sink. + processed by the underlying sink