From f104a7b46ed5088989e6376c96fc8b008c5ec077 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 15 Nov 2020 20:13:36 -0500 Subject: [PATCH] fix typo --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c6ee8c2..5ac0338 100644 --- a/src/main.rs +++ b/src/main.rs @@ -432,7 +432,7 @@ async fn run() -> Result<()> { Command::Next => { cl.command(b"next\n") .await - .context("Failed to play previous song")?; + .context("Failed to play next song")?; tx.send(Command::UpdateStatus).await?; tx.send(Command::UpdateFrame).await?; }