From 27319b48ebd5c91d2c9efe9d86d555b64f7a73a2 Mon Sep 17 00:00:00 2001 From: Andrew Paseltiner Date: Tue, 2 Feb 2016 16:45:35 -0500 Subject: [PATCH] Correct `linked_list::IntoIter` doc comment --- src/libcollections/linked_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/linked_list.rs b/src/libcollections/linked_list.rs index 1bd5a83d43708..654dae27e74ab 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 {