From 4105f5133e8aeaf3887716a68b5e07728b4a7e8b Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Tue, 16 May 2023 16:23:49 +0200 Subject: [PATCH] docs: fix spelling --- crates/pacdef_core/src/ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/pacdef_core/src/ui.rs b/crates/pacdef_core/src/ui.rs index aa49762..5b64622 100644 --- a/crates/pacdef_core/src/ui.rs +++ b/crates/pacdef_core/src/ui.rs @@ -15,7 +15,7 @@ pub fn get_user_confirmation() -> Result { Ok(reply.trim().is_empty() || reply.to_lowercase().contains('y')) } -/// Read a single byte from the stdin and interpret it as `char`. Use the +/// Read a single byte from stdin and interpret it as `char`. Use the /// `termios` library to switch the terminal to raw mode before reading, /// and restore the original terminal mode afterwards. ///