diff --git a/guide/guide-examples/examples/intro.rs b/guide/guide-examples/examples/intro.rs index e990df2..55974d5 100644 --- a/guide/guide-examples/examples/intro.rs +++ b/guide/guide-examples/examples/intro.rs @@ -40,10 +40,10 @@ fn book() { } guide_examples::book_example!(intro).animated(|animation| { - animation.wait_for(Duration::from_millis(1_000)).unwrap(); + animation.wait_for(Duration::from_secs(1)).unwrap(); animation .animate_text_input("Ferris 🦀", Duration::from_secs(1)) .unwrap(); - animation.wait_for(Duration::from_millis(1_000)).unwrap(); + animation.wait_for(Duration::from_secs(1)).unwrap(); }); }