1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

LibWeb: Fix ReadableStream's WEB_PLATFORM_OBJECT() class name

This commit is contained in:
Linus Groh 2022-10-04 18:02:54 +01:00
parent 08ce8cb996
commit 0db55693a9

View file

@ -15,7 +15,7 @@ namespace Web::Streams {
// https://streams.spec.whatwg.org/#readablestream
class ReadableStream final : public Bindings::PlatformObject {
WEB_PLATFORM_OBJECT(Request, Bindings::PlatformObject);
WEB_PLATFORM_OBJECT(ReadableStream, Bindings::PlatformObject);
public:
enum class State {