Rename 'task' variable in example

The collision between the 'task' variable and the 'task' import is confusing (task::block_on(task) especially).
pull/52/head
skorgu 5 years ago committed by GitHub
parent 7e5ff9409b
commit 77171b5f45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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!");
}
```

Loading…
Cancel
Save