Skip to content

Commit 6700166

Browse files
committed
core: fix typo that wasn't caught by the hacky previous implementation.
1 parent fe4f9b8 commit 6700166

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ pub trait IteratorExt: Iterator + Sized {
981981
#[unstable(feature = "core", reason = "recent addition")]
982982
fn cloned(self) -> Cloned<Self> where
983983
Self::Item: Deref,
984-
<Self::Item as Deref>::Output: Clone,
984+
<Self::Item as Deref>::Target: Clone,
985985
{
986986
Cloned { it: self }
987987
}

0 commit comments

Comments
 (0)