From 903882e900bdc6da1330c914289f6b554fe0e417 Mon Sep 17 00:00:00 2001 From: sloganking Date: Wed, 25 Oct 2023 19:49:20 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5Remove=20Unnecessary=20Print=20Line?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 0b57d00..fe3eb20 100644 --- a/src/main.rs +++ b/src/main.rs @@ -408,7 +408,6 @@ fn main() -> Result<(), Box> { if let Some(last_char) = transcription.chars().last() { if ['.', '?', '!', ','].contains(&last_char) { - println!("adding space to end of transcription"); transcription.push(' '); } }