Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jkilpatr committed Feb 28, 2024
1 parent d2ac989 commit 2662bfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mnemonic/language/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ mod tests {

for &(sum, lang) in &checksums {
let mut hasher = Sha256::new();
for (_idx, word) in lang.word_list().iter().enumerate() {
for word in lang.word_list().iter() {
assert!(::unicode_normalization::is_nfkd(word));
hasher.update(format!("{word}\n"));
}
Expand Down

0 comments on commit 2662bfa

Please sign in to comment.