fix(iterators2): Remove syntax resulting in misleading error message

closes #199
pull/207/head
Niklas Anderson 5 years ago
parent e696a07190
commit 4cde86643e

@ -9,7 +9,7 @@ pub fn capitalize_first(input: &str) -> String {
let mut c = input.chars();
match c.next() {
None => String::new(),
Some(first) => first.collect()::<String>() + c.as_str(),
Some(first) => first.collect::<String>() + c.as_str(),
}
}

Loading…
Cancel
Save