Skip to content

Commit 27319b4

Browse files
committed
Correct linked_list::IntoIter doc comment
1 parent 59b7c90 commit 27319b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcollections/linked_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pub struct IterMut<'a, T: 'a> {
8282
nelem: usize,
8383
}
8484

85-
/// An iterator over mutable references to the items of a `LinkedList`.
85+
/// An iterator over the items of a `LinkedList`.
8686
#[derive(Clone)]
8787
#[stable(feature = "rust1", since = "1.0.0")]
8888
pub struct IntoIter<T> {

0 commit comments

Comments
 (0)