Skip to content

Commit

Permalink
fix some typos
Browse files Browse the repository at this point in the history
Signed-off-by: cuishuang <[email protected]>
  • Loading branch information
cuishuang committed Apr 27, 2022
1 parent d9aaefb commit ab112d5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ release, and updates internal dependencies.
## Fixed

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

# [1.6.4] - 2020-09-16

Expand Down Expand Up @@ -207,7 +207,7 @@ release, and updates internal dependencies.

## Added

- Added `tokio02` feature flag, to allow compatability usage with [email protected] ([#804](https://github.com/async-rs/async-std/pull/804)).
- Added `tokio02` feature flag, to allow compatibility usage with [email protected] ([#804](https://github.com/async-rs/async-std/pull/804)).

## Changed

Expand Down
2 changes: 1 addition & 1 deletion src/future/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! ## Base Futures Concurrency
//!
//! Often it's desireable to await multiple futures as if it was a single
//! Often it's desirable to await multiple futures as if it was a single
//! future. The `join` family of operations converts multiple futures into a
//! single future that returns all of their outputs. The `race` family of
//! operations converts multiple future into a single future that returns the
Expand Down
2 changes: 1 addition & 1 deletion src/stream/stream/cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ where
return Poll::Ready(Ordering::Greater);
}

// Get next value if possible and necesary
// Get next value if possible and necessary
if !this.l.done && this.l_cache.is_none() {
let l_next = futures_core::ready!(this.l.as_mut().poll_next(cx));
if let Some(item) = l_next {
Expand Down
2 changes: 1 addition & 1 deletion src/stream/stream/partial_cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ where
return Poll::Ready(Some(Ordering::Greater));
}

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

0 comments on commit ab112d5

Please sign in to comment.