2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

Rename 'task' variable in example

The collision between the 'task' variable and the 'task' import is confusing (task::block_on(task) especially).
This commit is contained in:
skorgu 2019-08-16 16:42:21 -04:00 committed by GitHub
parent 7e5ff9409b
commit 77171b5f45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ async fn read_file(path: &str) -> Result<String, io::Error> {
}
fn main() {
let task = task::spawn(async {
let reader_task = task::spawn(async {
let result = read_file("data.csv");
match result {
Ok(s) => println!("{}", s),
@ -23,7 +23,7 @@ fn main() {
}
});
println!("Started task!");
task::block_on(task);
task::block_on(reader_task);
println!("Stopped task!");
}
```