fix: Correct order for random names

This commit is contained in:
SinTan1729
2023-09-19 18:11:29 -05:00
parent ac82396584
commit 1ee7ebe847

View File

@@ -79,7 +79,7 @@ fn random_name() -> String {
format!( format!(
"{0}-{1}", "{0}-{1}",
NAMES.choose(&mut rand::thread_rng()).unwrap(), ADJECTIVES.choose(&mut rand::thread_rng()).unwrap(),
ADJECTIVES.choose(&mut rand::thread_rng()).unwrap() NAMES.choose(&mut rand::thread_rng()).unwrap()
) )
} }