Remove unnecessary namespacing

This commit is contained in:
Ben S 2014-11-24 02:18:22 +00:00
parent 8e455f9390
commit c7417e0bca

View File

@ -21,8 +21,8 @@ impl SortPart {
if is_digit { if is_digit {
// numbers too big for a u64 fall back into strings. // numbers too big for a u64 fall back into strings.
match from_str::<u64>(slice) { match from_str::<u64>(slice) {
Some(num) => SortPart::Numeric(num), Some(num) => Numeric(num),
None => SortPart::Stringular(slice.to_string()), None => Stringular(slice.to_string()),
} }
} else { } else {
SortPart::Stringular(slice.to_ascii_lower()) SortPart::Stringular(slice.to_ascii_lower())