From 1d62627f7ae7810a2785f426fcb00f4667863314 Mon Sep 17 00:00:00 2001 From: Dominic Farolino Date: Wed, 29 Nov 2023 10:31:46 -0500 Subject: [PATCH] Fix ordering --- spec.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec.bs b/spec.bs index 2e0606a..fd85686 100644 --- a/spec.bs +++ b/spec.bs @@ -137,8 +137,8 @@ dl, dd { [Exposed=*] interface Subscriber { undefined next(any result); - undefined complete(); undefined error(any error); + undefined complete(); undefined addTeardown(VoidFunction teardown); // True after the Subscriber is created, up until either @@ -163,8 +163,8 @@ callback ObserverCallback = undefined (any value); dictionary Observer { ObserverCallback next; - VoidFunction complete; ObserverCallback error; + VoidFunction complete; }; dictionary SubscribeOptions {