Skip to content

Commit

Permalink
fix bad detail markup
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Mar 5, 2024
1 parent 2102ed4 commit a828116
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec.bs
Original file line number Diff line number Diff line change
Expand Up @@ -840,13 +840,13 @@ For now, see [https://github.com/wicg/observable#operators](https://github.com/w
: [=internal observer/next steps=]
:: 1. If |activeInnerSubscription| is true, then:

:: 1. [=list/Append=] the passed in <var ignore>value</var> to |queue|.
1. [=list/Append=] the passed in <var ignore>value</var> to |queue|.

1. Return.

1. Otherwise:

:: 1. Set |activeInnerSubscription| to true.
1. Set |activeInnerSubscription| to true.

1. Let |innerObservable| be the result of [=Invoke=] |mapper| with the passed in <var ignore>value</var>.

Expand All @@ -862,13 +862,13 @@ For now, see [https://github.com/wicg/observable#operators](https://github.com/w
: [=internal observer/complete steps=]
:: 1. If |queue| is not empty, then:

:: 1. Let |nextValue| be [=list/Remove=] the first item from |queue|.
1. Let |nextValue| be [=list/Remove=] the first item from |queue|.

1. Repeat the steps above starting from the step where |innerObservable| is obtained by invoking |mapper| with |nextValue|.

1. Otherwise:

:: 1. Set |activeInnerSubscription| to false.
1. Set |activeInnerSubscription| to false.

1. If |sourceObserver| has also completed, run |subscriber|'s {{Subscriber/complete()}} method.

Expand Down

0 comments on commit a828116

Please sign in to comment.