2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-21 11:49:40 +00:00

$cargo fmt

This commit is contained in:
k-nasa 2019-10-17 16:34:39 +09:00
parent 70e8476264
commit f2bf01223c

View file

@ -167,9 +167,7 @@ impl Stdin {
static ref STDIN: std::io::Stdin = std::io::stdin();
}
blocking::spawn(async {
StdinLock(STDIN.lock())
}).await
blocking::spawn(async { StdinLock(STDIN.lock()) }).await
}
}