This commit is contained in:
Brian Hicks 2022-09-12 10:24:11 -05:00
parent 39f73b4c7b
commit 5d23aec153
No known key found for this signature in database
GPG Key ID: C4F324B9CAAB0D50

View File

@ -65,7 +65,7 @@ impl<'a, K, V> IntoIterator for &'a RocDict<K, V> {
fn into_iter(self) -> Self::IntoIter {
IntoIter {
index: 0,
items: &self,
items: self,
}
}
}