Skip to content

Commit

Permalink
typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
el-sambal committed Nov 1, 2022
1 parent 884505f commit a460843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fn run() -> Result<(), String> {
let args: Vec<String> = env::args().collect();

if args.len() < 3 {
return Err("Please enter at least 2 arguements!".to_string());
return Err("Please enter at least 2 arguments!".to_string());
}
let algo_selection = match args[1].trim().to_lowercase().as_str() {
"an" | "annealing" => Algorithm::Annealing,
Expand Down

0 comments on commit a460843

Please sign in to comment.