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:
parent
7e5ff9409b
commit
77171b5f45
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue