about summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authorAndrew Paseltiner <apaseltiner@gmail.com>2015-03-23 08:51:29 -0400
committerAndrew Paseltiner <apaseltiner@gmail.com>2015-03-23 08:51:29 -0400
commit88edf9774caf32ff77e7bad096b624d37cd66b76 (patch)
tree0afa6d720e2de3edcd8d218f3a3f2442a4eef388 /src/libcollections
parent7934d524b51c0220ef67c0f9951a41e4bee2beb2 (diff)
downloadrust-88edf9774caf32ff77e7bad096b624d37cd66b76.tar.gz
rust-88edf9774caf32ff77e7bad096b624d37cd66b76.zip
document iteration order for `vec_deque::IntoIter`
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/vec_deque.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/vec_deque.rs b/src/libcollections/vec_deque.rs
index 2ade67f26bb..1a167d26bba 100644
--- a/src/libcollections/vec_deque.rs
+++ b/src/libcollections/vec_deque.rs
@@ -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 {