Fix typo in error message for flag_seed_config (#91)

This commit is contained in:
Bruno Heridet 2019-10-29 13:54:06 +01:00 committed by Danilo Bargen
commit 94c0e99693

View file

@ -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);
}
}