doc: fix some typos in the Guide

This commit is contained in:
Tshepang Lekhonkhobe 2014-08-24 17:22:10 +02:00
parent 5ad7afc2d7
commit 0a3073657f
1 changed files with 2 additions and 2 deletions

View File

@ -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