Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Dec 1, 2024
1 parent e4e310a commit a34d793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ fn my_system(mut task_pool: AsyncTaskPool<u64>) {
}

for status in task_pool.iter_poll() {
if let AsyncTaskStatus::Finished(t) = status {
if let Poll::Ready(t) = status {
info!("Received {t}");
}
}
Expand Down

0 comments on commit a34d793

Please sign in to comment.