about summary refs log tree commit diff
path: root/library/core/src/future/join.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/src/future/join.rs')
-rw-r--r--library/core/src/future/join.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/future/join.rs b/library/core/src/future/join.rs
index 22bac5d3e6f..3f35179ddc2 100644
--- a/library/core/src/future/join.rs
+++ b/library/core/src/future/join.rs
@@ -4,7 +4,7 @@ use crate::cell::UnsafeCell;
 use crate::future::{poll_fn, Future};
 use crate::mem;
 use crate::pin::Pin;
-use crate::task::{Context, Poll, ready};
+use crate::task::{ready, Context, Poll};
 
 /// Polls multiple futures simultaneously, returning a tuple
 /// of all results once complete.