Skip to content

Commit

Permalink
Merge pull request #205 from yuk1ty/small-fixes
Browse files Browse the repository at this point in the history
Small fixes
  • Loading branch information
nrc authored Oct 5, 2024
2 parents 654329e + 062e081 commit a8aa8e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/02_execution/05_io.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ event occurs. In the case of our `SocketRead` example above, the
impl Socket {
fn set_readable_callback(&self, waker: Waker) {
// `local_executor` is a reference to the local executor.
// this could be provided at creation of the socket, but in practice
// This could be provided at creation of the socket, but in practice
// many executor implementations pass it down through thread local
// storage for convenience.
let local_executor = self.local_executor;
Expand Down
2 changes: 1 addition & 1 deletion src/06_multiple_futures/02_join.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The `futures::join` macro makes it possible to wait for multiple different
futures to complete while executing them all concurrently.

# `join!`
## `join!`

When performing multiple asynchronous operations, it's tempting to simply
`.await` them in a series:
Expand Down

0 comments on commit a8aa8e6

Please sign in to comment.