Rename vec::len(var) to var.len()

This commit is contained in:
Youngmin Yoo 2013-05-14 18:52:12 +09:00
parent c30414f980
commit a2a8596c3d
58 changed files with 128 additions and 134 deletions

View file

@ -4693,7 +4693,7 @@ pub impl Resolver {
}
}
if vec::len(values) > 0 &&
if values.len() > 0 &&
values[smallest] != uint::max_value &&
values[smallest] < str::len(name) + 2 &&
values[smallest] <= max_distance &&