document iteration order for vec_deque::IntoIter

This commit is contained in:
Andrew Paseltiner 2015-03-23 08:51:29 -04:00
parent 7934d524b5
commit 88edf9774c

View file

@ -556,7 +556,7 @@ impl<T> VecDeque<T> {
}
}
/// Consumes the list into an iterator yielding elements by value.
/// Consumes the list into a front-to-back iterator yielding elements by value.
#[stable(feature = "rust1", since = "1.0.0")]
pub fn into_iter(self) -> IntoIter<T> {
IntoIter {