@@ -18,7 +18,7 @@ channel receiver. The first difference is time: iterators are synchronous, while
18
18
the channel receiver is asynchronous. The second is the API. When working
19
19
directly with ` Iterator ` , we call its synchronous ` next ` method. With the
20
20
` trpl::Receiver ` stream in particular, we called an asynchronous ` recv ` method
21
- instead. Otherwise, these APIs otherwise feel very similar, and that similarity
21
+ instead. Otherwise, these APIs feel very similar, and that similarity
22
22
isn’t a coincidence. A stream is like an asynchronous form of iteration. Whereas
23
23
the ` trpl::Receiver ` specifically waits to receive messages, though, the
24
24
general-purpose stream API is much broader: it provides the next item the
@@ -123,7 +123,7 @@ we can do that _is_ unique to streams.
123
123
124
124
Many concepts are naturally represented as streams: items becoming available in
125
125
a queue, chunks of data being pulled incrementally from the filesystem when the
126
- full data set is too large for the computer’s , or data arriving over the
126
+ full data set is too large for the computer’s memory , or data arriving over the
127
127
network over time. Because streams are futures, we can use them with any other
128
128
kind of future and combine them in interesting ways. For example, we can batch
129
129
up events to avoid triggering too many network calls, set timeouts on sequences
0 commit comments