You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/asynciterable/creating.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ let value, done;
46
46
47
47
## Brief Interlude - `AsyncSink`
48
48
49
-
Very rarely will we ever need to create these async-iterables by hand, however, if you need a collection that you can add to as well as iterate, we have the `AsyncSink` class. This class serves as a basis for some of our operators such as binding to events and DOM and Node.js streams.
49
+
Very rarely will we ever need to create these async-iterables by hand, however, if you need a collection that you can add to as well as iterate, we have the `AsyncSink` class. This class serves as a basis for some of our operators such as binding to events and DOM and Node.js streams.
Copy file name to clipboardExpand all lines: docs/asynciterable/transforming.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,5 @@ await subscription.pipe(
11
11
.forEach(handleBatch)
12
12
```
13
13
14
-
Using this operator makes sure that if messages slow down you'll still
15
-
handle them in a reasonable time whereas using `buffer` would leave you stuck until you get
14
+
Using this operator makes sure that if messages slow down you'll still handle them in a reasonable time whereas using `buffer` would leave you stuck until you get
0 commit comments