rustfmt rewrite_rules.rs

This commit is contained in:
Sylvestre Ledru 2020-04-13 20:33:33 +02:00
parent 08a2cd0fc8
commit 78624a53ee

View file

@ -15,4 +15,3 @@ fn trim_left_matches_to_start<P: FnMut(char) -> bool>(s: &str, inner: P) {
replace!(s.trim_left_matches(inner) => s.trim_start_matches(inner));
replace!(s.trim_right_matches(inner) => s.trim_end_matches(inner));
}