From ef9a77313a6ff4e98d97bd3ac207c88e31bc0e33 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 28 Nov 2022 06:54:38 -0800 Subject: [PATCH] Tidy up `use`s. --- src/io/fcntl.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/io/fcntl.rs b/src/io/fcntl.rs index 109e4540..ba79149f 100644 --- a/src/io/fcntl.rs +++ b/src/io/fcntl.rs @@ -8,8 +8,7 @@ //! //! [`io`]: crate::io -use crate::backend; -use crate::io; +use crate::{backend, io}; use backend::fd::{AsFd, OwnedFd, RawFd}; pub use backend::io::types::FdFlags;