Skip to content

Commit a8aa8e6

Browse files
authored
Merge pull request #205 from yuk1ty/small-fixes
Small fixes
2 parents 654329e + 062e081 commit a8aa8e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/02_execution/05_io.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ event occurs. In the case of our `SocketRead` example above, the
8484
impl Socket {
8585
fn set_readable_callback(&self, waker: Waker) {
8686
// `local_executor` is a reference to the local executor.
87-
// this could be provided at creation of the socket, but in practice
87+
// This could be provided at creation of the socket, but in practice
8888
// many executor implementations pass it down through thread local
8989
// storage for convenience.
9090
let local_executor = self.local_executor;

src/06_multiple_futures/02_join.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The `futures::join` macro makes it possible to wait for multiple different
44
futures to complete while executing them all concurrently.
55

6-
# `join!`
6+
## `join!`
77

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

0 commit comments

Comments
 (0)