From d4f7e9156aaeacfdd8e08652b195d05e319453d1 Mon Sep 17 00:00:00 2001 From: zeozeozeo <108888572+zeozeozeo@users.noreply.github.com> Date: Thu, 30 Nov 2023 17:57:47 +0500 Subject: [PATCH] Fix typo --- examples/loops.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/loops.rs b/examples/loops.rs index 90b05ce..ddd8bac 100644 --- a/examples/loops.rs +++ b/examples/loops.rs @@ -26,7 +26,7 @@ fn main() { ); sound.add_command(command); - // change the loop to be 4-5 seconds from 13 secons in the span of 5 seconds + // change the loop to be 4-5 seconds from 13 seconds in the span of 5 seconds // (the playback rate change command is applied simultaneously) let command = Command::new(Change::LoopSeconds(4.0..=6.0), Easing::Linear, 13.0, 5.0); sound.add_command(command);