Skip to content

Commit 4fbca2e

Browse files
ibraheemdevthe8472
authored andcommitted
tidy
1 parent b997f3c commit 4fbca2e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

library/core/src/future/join.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::cell::UnsafeCell;
44
use crate::future::{poll_fn, Future};
55
use crate::mem;
66
use crate::pin::Pin;
7-
use crate::task::{Context, Poll, ready};
7+
use crate::task::{ready, Context, Poll};
88

99
/// Polls multiple futures simultaneously, returning a tuple
1010
/// of all results once complete.

library/core/src/task/poll.rs

-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ impl<T> Poll<T> {
9494
pub const fn is_pending(&self) -> bool {
9595
!self.is_ready()
9696
}
97-
9897
}
9998

10099
impl<T, E> Poll<Result<T, E>> {

0 commit comments

Comments
 (0)