Skip to content

Commit

Permalink
Fix ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
domfarolino committed Nov 29, 2023
1 parent 25afbcf commit 1d62627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec.bs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -163,8 +163,8 @@ callback ObserverCallback = undefined (any value);

dictionary Observer {
ObserverCallback next;
VoidFunction complete;
ObserverCallback error;
VoidFunction complete;
};

dictionary SubscribeOptions {
Expand Down

0 comments on commit 1d62627

Please sign in to comment.