Fix for misspelled comments.

The spelling corrections were made in both documentation comments and
regular comments.
This commit is contained in:
Joseph Crail 2015-02-04 23:00:02 -05:00
parent ba2f13ef06
commit dc2e444e50
27 changed files with 36 additions and 36 deletions

View file

@ -260,7 +260,7 @@ pub trait IteratorExt: Iterator + Sized {
}
/// Creates an iterator that applies the predicate to each element returned
/// by this iterator. The only elements that will be yieled are those that
/// by this iterator. The only elements that will be yielded are those that
/// make the predicate evaluate to `true`.
///
/// # Examples