Skip to content

Commit 88edf97

Browse files
committed
document iteration order for vec_deque::IntoIter
1 parent 7934d52 commit 88edf97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcollections/vec_deque.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ impl<T> VecDeque<T> {
556556
}
557557
}
558558

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

0 commit comments

Comments
 (0)