Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
inthar-raven committed Aug 12, 2024
1 parent e9a083b commit ee7428d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/words.rs
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ pub fn chirality(word: &[Letter]) -> Chirality {

let word_rev: Vec<usize> = word.iter().cloned().rev().collect();
let least_mode_word_rev = least_mode(&word_rev);

match least_mode.cmp(&least_mode_word_rev) {
Ordering::Less => Chirality::Right,
Ordering::Equal => Chirality::Achiral,
Expand Down

0 comments on commit ee7428d

Please sign in to comment.