Skip to content

Commit ab112d5

Browse files
committed
fix some typos
Signed-off-by: cuishuang <imcusg@gmail.com>
1 parent d9aaefb commit ab112d5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ release, and updates internal dependencies.
155155
## Fixed
156156

157157
- Fix `TcpListener::incoming`. ([#889](https://github.com/async-rs/async-std/pull/889))
158-
- Fix tokio compatability flag. ([#882](https://github.com/async-rs/async-std/pull/882))
158+
- Fix tokio compatibility flag. ([#882](https://github.com/async-rs/async-std/pull/882))
159159

160160
# [1.6.4] - 2020-09-16
161161

@@ -207,7 +207,7 @@ release, and updates internal dependencies.
207207

208208
## Added
209209

210-
- Added `tokio02` feature flag, to allow compatability usage with tokio@0.2 ([#804](https://github.com/async-rs/async-std/pull/804)).
210+
- Added `tokio02` feature flag, to allow compatibility usage with tokio@0.2 ([#804](https://github.com/async-rs/async-std/pull/804)).
211211

212212
## Changed
213213

src/future/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! ## Base Futures Concurrency
44
//!
5-
//! Often it's desireable to await multiple futures as if it was a single
5+
//! Often it's desirable to await multiple futures as if it was a single
66
//! future. The `join` family of operations converts multiple futures into a
77
//! single future that returns all of their outputs. The `race` family of
88
//! operations converts multiple future into a single future that returns the

src/stream/stream/cmp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ where
5858
return Poll::Ready(Ordering::Greater);
5959
}
6060

61-
// Get next value if possible and necesary
61+
// Get next value if possible and necessary
6262
if !this.l.done && this.l_cache.is_none() {
6363
let l_next = futures_core::ready!(this.l.as_mut().poll_next(cx));
6464
if let Some(item) = l_next {

src/stream/stream/partial_cmp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ where
5959
return Poll::Ready(Some(Ordering::Greater));
6060
}
6161

62-
// Get next value if possible and necesary
62+
// Get next value if possible and necessary
6363
if !this.l.done && this.l_cache.is_none() {
6464
let l_next = futures_core::ready!(this.l.as_mut().poll_next(cx));
6565
if let Some(item) = l_next {

0 commit comments

Comments
 (0)