From 0a3073657fa5c67f923f8390318448bc613e3b21 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Sun, 24 Aug 2014 17:22:10 +0200 Subject: [PATCH] doc: fix some typos in the Guide --- src/libcore/str.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/str.rs b/src/libcore/str.rs index b9d9c060a41f4..66564b1bf07dc 100644 --- a/src/libcore/str.rs +++ b/src/libcore/str.rs @@ -1507,8 +1507,8 @@ pub trait StrSlice<'a> { /// /// # Example /// - /// This example manually iterate through the characters of a - /// string; this should normally by done by `.chars()` or + /// This example manually iterates through the characters of a + /// string; this should normally be done by `.chars()` or /// `.char_indices`. /// /// ```rust