]> git.lizzy.rs Git - rust.git/commitdiff
Correct `linked_list::IntoIter` doc comment
authorAndrew Paseltiner <apaseltiner@gmail.com>
Tue, 2 Feb 2016 21:45:35 +0000 (16:45 -0500)
committerAndrew Paseltiner <apaseltiner@gmail.com>
Tue, 2 Feb 2016 21:45:35 +0000 (16:45 -0500)
src/libcollections/linked_list.rs

index 1bd5a83d4370860223f13966ab449a006369b14f..654dae27e74abf8c1fb1baf59ea601a7d751d41d 100644 (file)
@@ -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> {