summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
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;