diff options
Diffstat (limited to 'src/libcore/iter.rs')
| -rw-r--r-- | src/libcore/iter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 6d8e04d97dd..b4ccf930437 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -981,7 +981,7 @@ pub trait IteratorExt: Iterator + Sized { #[unstable(feature = "core", reason = "recent addition")] fn cloned(self) -> Cloned<Self> where Self::Item: Deref, - <Self::Item as Deref>::Output: Clone, + <Self::Item as Deref>::Target: Clone, { Cloned { it: self } } |
