fix the &mut _ patterns

This commit is contained in:
Jorge Aparicio 2015-01-07 19:26:00 -05:00
parent ed4bebda96
commit 7d72719efc
15 changed files with 23 additions and 23 deletions

View file

@ -90,7 +90,7 @@ impl<'a, T: Copy> Iterator for Values<'a, T> {
type Item = T;
fn next(&mut self) -> Option<T> {
let &Values(ref mut items) = self;
let &mut Values(ref mut items) = self;
items.next().map(|&x| x)
}
}