replace purple with violet

This commit is contained in:
132nd-Professor
2022-08-12 22:06:01 +02:00
parent 89a79e3015
commit ac873d385e
2 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ fn main_inner() -> Result<(), Box<dyn std::error::Error>> {
let body = Arc::new(body);
let input_filename = Arc::new(input_filename);
let coalitions = vec![Coalition::Blue, Coalition::Red, Coalition::Purple];
let coalitions = vec![Coalition::Blue, Coalition::Red, Coalition::Violet];
// clippy wants us to combine both ierators into one. this is not what we want, because then
// we would spawn a thread, join it, and only then spawn a new one.