Skip to content

Commit c27623c

Browse files
committed
cargo fmt
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 647aab8 commit c27623c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/fs/read_dir.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::fs::DirEntry;
55
use crate::future::Future;
66
use crate::io;
77
use crate::stream::Stream;
8-
use crate::task::{blocking, Context, Poll, JoinHandle};
8+
use crate::task::{blocking, Context, JoinHandle, Poll};
99

1010
/// Returns a stream of entries in a directory.
1111
///

src/io/stderr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use cfg_if::cfg_if;
55

66
use crate::future::Future;
77
use crate::io::{self, Write};
8-
use crate::task::{blocking, Context, Poll, JoinHandle};
8+
use crate::task::{blocking, Context, JoinHandle, Poll};
99

1010
/// Constructs a new handle to the standard error of the current process.
1111
///

0 commit comments

Comments
 (0)