Fix a reference to RefContext.

This commit is contained in:
Tom Alexander
2023-09-02 20:52:02 -04:00
parent 0d728510d7
commit c309d14776
2 changed files with 4 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ impl<'parent, T> List<'parent, T> {
}
pub fn iter_list(&self) -> IterList<'_, T> {
Iter { next: Some(self) }
IterList { next: Some(self) }
}
}