From f18d1ad32469ca87452e701ab6ec636b79112070 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Thu, 8 Oct 2015 08:00:02 -0400 Subject: [PATCH] Format code-like text in Iterator::cloned doc-comment --- src/libcore/iter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 00c7773fd8ba8..3554325d0dbfc 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -935,7 +935,7 @@ pub trait Iterator { /// Creates an iterator that clones the elements it yields. /// - /// This is useful for converting an Iterator<&T> to an Iterator, + /// This is useful for converting an `Iterator<&T>` to an`Iterator`, /// so it's a more convenient form of `map(|&x| x)`. /// /// # Examples