Skip to content

Commit c7a79be

Browse files
committed
cargo fmt
1 parent 4532d20 commit c7a79be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/util/lev_distance.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::cmp;
22

33
pub fn lev_distance(me: &str, t: &str) -> usize {
4-
let t_len = t.chars().count();
4+
let t_len = t.chars().count();
55
if me.is_empty() {
66
return t_len;
77
}

0 commit comments

Comments
 (0)