summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 0298c63..d26d923 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -16,8 +16,8 @@ async fn main() -> anyhow::Result<()> {
i += 1;
}
println!("{} tasks created", tasks.len());
- for h in tasks {
- let result = h.await?;
+ for task in tasks {
+ let result = task.await?;
let response = result?;
if !response.status().is_success() {
println!("{:?} {}", args.url, response.status());