From 34da5349174be8e773adae6f98590b051b9b548a Mon Sep 17 00:00:00 2001 From: "Ame :]" <104745335+ameknite@users.noreply.github.com> Date: Mon, 16 Oct 2023 23:51:07 -0500 Subject: [PATCH] fix typo in time.rs example (#10152) ## Solution n -> s --- examples/ecs/time.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ecs/time.rs b/examples/ecs/time.rs index 653a63bb92d9c..e0c1d6e427b0a 100644 --- a/examples/ecs/time.rs +++ b/examples/ecs/time.rs @@ -23,7 +23,7 @@ fn help() { println!(" q: Quit the app."); println!(" f: Set speed to fast, 2x"); println!(" n: Set speed to normal, 1x"); - println!(" n: Set speed to slow, 0.5x"); + println!(" s: Set speed to slow, 0.5x"); println!(" p: Pause"); println!(" u: Unpause"); }