auto merge of #16730 : tshepang/rust/typos, r=pcwalton

This commit is contained in:
bors 2014-08-24 17:01:06 +00:00
commit 8d3390e12f
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