cargo fmt

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Yoshua Wuyts 2019-10-08 14:58:39 +02:00
parent 647aab819f
commit c27623c0fd
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ use crate::fs::DirEntry;
use crate::future::Future;
use crate::io;
use crate::stream::Stream;
use crate::task::{blocking, Context, Poll, JoinHandle};
use crate::task::{blocking, Context, JoinHandle, Poll};
/// Returns a stream of entries in a directory.
///

View file

@ -5,7 +5,7 @@ use cfg_if::cfg_if;
use crate::future::Future;
use crate::io::{self, Write};
use crate::task::{blocking, Context, Poll, JoinHandle};
use crate::task::{blocking, Context, JoinHandle, Poll};
/// Constructs a new handle to the standard error of the current process.
///