From a75c5c003068155b34b6cc18bee7ca60ba3dda25 Mon Sep 17 00:00:00 2001 From: Adam Rice Date: Wed, 22 Mar 2017 12:51:12 +0900 Subject: [PATCH] Tiny editorial nitpick in WritableStream Replace "Let _error_ to a" with "Let _error_ be a". --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index 25e048645..c30735500 100644 --- a/index.bs +++ b/index.bs @@ -2918,7 +2918,7 @@ nothrow>WritableStreamFinishInFlightClose ( stream ) 1. Return. 1. Resolve _stream_.[[pendingAbortRequest]] with *undefined*. 1. Set _stream_.[[pendingAbortRequest]] to *undefined*. - 1. Let _error_ to a new *TypeError* indicating that the stream was requested to abort but has been closed. + 1. Let _error_ be a new *TypeError* indicating that the stream was requested to abort but has been closed. 1. Set _stream_.[[state]] to `"errored"`. 1. Set _stream_.[[storedError]] to _error_. 1. Perform ! WritableStreamRejectClosedPromiseInReactionToError(_stream_).