about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Paseltiner <apaseltiner@gmail.com>2016-02-02 16:45:35 -0500
committerAndrew Paseltiner <apaseltiner@gmail.com>2016-02-02 16:45:35 -0500
commit27319b48ebd5c91d2c9efe9d86d555b64f7a73a2 (patch)
treee0ebdaecdcb7c910e05240d1506682fbc34116ce
parent59b7c907a3e3dd8b263297adf6ff0515fac125e3 (diff)
downloadrust-27319b48ebd5c91d2c9efe9d86d555b64f7a73a2.tar.gz
rust-27319b48ebd5c91d2c9efe9d86d555b64f7a73a2.zip
Correct `linked_list::IntoIter` doc comment
-rw-r--r--src/libcollections/linked_list.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/linked_list.rs b/src/libcollections/linked_list.rs
index 1bd5a83d437..654dae27e74 100644
--- a/src/libcollections/linked_list.rs
+++ b/src/libcollections/linked_list.rs
@@ -82,7 +82,7 @@ pub struct IterMut<'a, T: 'a> {
     nelem: usize,
 }
 
-/// An iterator over mutable references to the items of a `LinkedList`.
+/// An iterator over the items of a `LinkedList`.
 #[derive(Clone)]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct IntoIter<T> {