Skip to content

Commit

Permalink
style: fixed cargo clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
hitenkoku committed Oct 23, 2023
1 parent 94628dd commit 439fedb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/afterfact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3359,7 +3359,7 @@ mod tests {
];
let output_replaced_maps: HashMap<&str, &str> =
HashMap::from_iter(vec![("🛂r", "\r"), ("🛂n", "\n"), ("🛂t", "\t")]);
let mut removed_replaced_maps: HashMap<&str, &str> =
let removed_replaced_maps: HashMap<&str, &str> =
HashMap::from_iter(vec![("\n", " "), ("\r", " "), ("\t", " ")]);
let output_replacer = AhoCorasickBuilder::new()
.match_kind(MatchKind::LeftmostLongest)
Expand Down

0 comments on commit 439fedb

Please sign in to comment.