Skip to content

Commit 4a01a91

Browse files
authored
Merge pull request #4238 from ormai/main
Fix typos in chapter 17
2 parents 18f6e63 + ba1646d commit 4a01a91

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ch17-04-streams.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ channel receiver. The first difference is time: iterators are synchronous, while
1818
the channel receiver is asynchronous. The second is the API. When working
1919
directly with `Iterator`, we call its synchronous `next` method. With the
2020
`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
2222
isn’t a coincidence. A stream is like an asynchronous form of iteration. Whereas
2323
the `trpl::Receiver` specifically waits to receive messages, though, the
2424
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.
123123

124124
Many concepts are naturally represented as streams: items becoming available in
125125
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
127127
network over time. Because streams are futures, we can use them with any other
128128
kind of future and combine them in interesting ways. For example, we can batch
129129
up events to avoid triggering too many network calls, set timeouts on sequences

src/ch17-05-traits-for-async.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ function. The signature for `join_all` requires that the types of the items in
167167
the collection all implement the `Future` trait, and `Box<T>` implements
168168
`Future` only if the `T` it wraps is a future that implements the `Unpin` trait.
169169

170-
That’s a lot to absorb! To really understand it, let’s we dive a little further
170+
That’s a lot to absorb! To really understand it, let’s dive a little further
171171
into how the `Future` trait actually works, in particular around _pinning_.
172172

173173
Look again at the definition of the `Future` trait:
@@ -189,7 +189,7 @@ knows when to check any given future while still being lazy. Again, the details
189189
of how that works are beyond the scope of this chapter, and you generally only
190190
need to think about this when writing a custom `Future` implementation. We’ll
191191
focus instead on the type for `self`, as this is the first time we’ve seen a
192-
method where `self` has a type annotation. A type annotation for `self` is works
192+
method where `self` has a type annotation. A type annotation for `self` works
193193
like type annotations for other function parameters, but with two key
194194
differences:
195195

0 commit comments

Comments
 (0)