Skip to content

Commit 4fecd39

Browse files
committed
Merge branch 'feat/merge-streams' of https://github.com/clear/windpipe into feat/merge-streams
2 parents c4a69d8 + f9eba34 commit 4fecd39

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/stream/higher-order.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export class HigherOrderStream<T, E> extends StreamTransforms<T, E> {
230230
let outerExhausted = false;
231231

232232
// Keep a map from inner iterators to their pending next() promise
233-
// we can race them to get the next value but we only remove then once resolved so we dont drop any values
233+
// we can race them to get the next value but we only remove them once resolved so we dont drop any values
234234
const innerPending = new Map<
235235
AsyncIterator<Atom<unknown, unknown>>,
236236
Promise<IteratorResult<Atom<unknown, unknown>>>

0 commit comments

Comments
 (0)