BurntSushi / walkdir

Rust library for walking directories recursively.
The Unlicense
1.24k stars 107 forks source link

Rename Iter to IntoIter #37

Closed KodrAus closed 7 years ago

KodrAus commented 7 years ago

Relevant API Guideline

The Iter type is produced by the IntoIterator trait, so it should be called IntoIter instead of Iter. As an example, see vec::IntoIter.