Skip to content

Commit

Permalink
document iteration order for vec_deque::IntoIter
Browse files Browse the repository at this point in the history
  • Loading branch information
apasel422 committed Mar 23, 2015
1 parent 7934d52 commit 88edf97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/vec_deque.rs
Expand Up @@ -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 {
Expand Down

0 comments on commit 88edf97

Please sign in to comment.