diff options
| author | Yuval Adam <_@yuv.al> | 2022-07-05 14:04:09 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2022-07-05 14:04:09 +0300 |
| commit | 418a7b5a9ccc19d3c275396cfda3482f699b8194 (patch) | |
| tree | 6a2d9a758bebb21d452ae41fc1251f6dbf99e765 | |
| parent | eda18b18bd3b1ec8a0bb14e24ec2a8c7a79c3980 (diff) | |
s/3/10
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 9424819..f24cf8f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,7 +30,7 @@ impl Future for Delay { async fn main() { let s = stream! { let mut when = Instant::now(); - for i in 0..3 { + for i in 0..10 { let delay = Delay { when }; delay.await; yield i; |
