From 94c0e99693bc43dec88a741f0c5b6fd3bc0875e1 Mon Sep 17 00:00:00 2001 From: Bruno Heridet Date: Tue, 29 Oct 2019 13:54:06 +0100 Subject: [PATCH] Fix typo in error message for flag_seed_config (#91) --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 668c476..8de5ef0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -234,7 +234,7 @@ fn main() { process::exit(0); } - // Determine the usage of styles + // Determine the usage of styles #[cfg(target_os = "windows")] let enable_styles = ansi_term::enable_ansi_support().is_ok(); #[cfg(not(target_os = "windows"))] @@ -314,7 +314,7 @@ fn main() { process::exit(1); } Err(_) => { - eprintln!("Unkown error"); + eprintln!("Unknown error"); process::exit(1); } }