fix: Correct order for random names

This commit is contained in:
SinTan1729 2023-09-19 18:11:29 -05:00
parent ac82396584
commit 1ee7ebe847
No known key found for this signature in database
GPG Key ID: EB3E68BFBA25C85F

View File

@ -79,7 +79,7 @@ fn random_name() -> String {
format!(
"{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()
)
}