Fix document for PyList::iter

This commit is contained in:
kngwyu 2020-01-08 23:44:16 +09:00
parent 7b502821ce
commit ea9824a982
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ impl PyList {
})
}
/// Returns an iterator over the tuple items.
/// Returns an iterator over this list items.
pub fn iter(&self) -> PyListIterator {
PyListIterator {
list: self,