about summary refs log tree commit diff
path: root/library/std/src/sync/mpmc/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sync/mpmc/error.rs')
-rw-r--r--library/std/src/sync/mpmc/error.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/library/std/src/sync/mpmc/error.rs b/library/std/src/sync/mpmc/error.rs
index 33b2bff8534..e3aec7e7623 100644
--- a/library/std/src/sync/mpmc/error.rs
+++ b/library/std/src/sync/mpmc/error.rs
@@ -1,7 +1,5 @@
-use crate::error;
-use crate::fmt;
-
 pub use crate::sync::mpsc::{RecvError, RecvTimeoutError, SendError, TryRecvError, TrySendError};
+use crate::{error, fmt};
 
 /// An error returned from the [`send_timeout`] method.
 ///