From eb5217effaad79d98d0b9cd6d82c5e4e458024fe Mon Sep 17 00:00:00 2001 From: awwpotato <153149335+awwsomepotato@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:58:06 -0700 Subject: [PATCH] fix: spelling --- src/query.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query.rs b/src/query.rs index 36b66c6..a1482fc 100644 --- a/src/query.rs +++ b/src/query.rs @@ -130,7 +130,7 @@ pub async fn get_pulse_data( format!("and will queue in {} hour(s)", queue_time / 3600) } 60..3600 => { - format!("and will be queue in {} minute(s)", queue_time / 60) + format!("and will queue in {} minute(s)", queue_time / 60) } 30..60 => format!("and will queue in {} second(s)", queue_time), ..30 => "is queueing NOW".to_string(),