From 3c11a1551d0615d52257759ed527b1c7955e578e Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 29 Jan 2024 07:26:47 -0500 Subject: [PATCH] LibWeb: Add missing spec link to ReadableStreamBYOBRequest::respond --- Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp b/Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp index dcea6abadd..f7bc1eacb3 100644 --- a/Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp +++ b/Userland/Libraries/LibWeb/Streams/ReadableStreamBYOBRequest.cpp @@ -39,6 +39,7 @@ void ReadableStreamBYOBRequest::visit_edges(Cell::Visitor& visitor) visitor.visit(m_view); } +// https://streams.spec.whatwg.org/#rs-byob-request-respond WebIDL::ExceptionOr ReadableStreamBYOBRequest::respond(WebIDL::UnsignedLongLong bytes_written) { // 1. If this.[[controller]] is undefined, throw a TypeError exception.