LibWeb: Fix invalid spec link on the TransformStream constructor

This commit is contained in:
Timothy Flynn 2024-04-29 18:38:03 -04:00 committed by Andreas Kling
parent 37d62c16f8
commit 9e8ff45962
Notes: sideshowbarker 2024-07-17 00:23:42 +09:00

View file

@ -18,7 +18,7 @@ namespace Web::Streams {
JS_DEFINE_ALLOCATOR(TransformStream);
// https://streams.spec.whatwg.org/#ts-construct
// https://streams.spec.whatwg.org/#ts-constructor
WebIDL::ExceptionOr<JS::NonnullGCPtr<TransformStream>> TransformStream::construct_impl(JS::Realm& realm, Optional<JS::Handle<JS::Object>> transformer_object, QueuingStrategy const& writable_strategy, QueuingStrategy const& readable_strategy)
{
auto& vm = realm.vm();