Rollup merge of #23821 - nicholasbishop:bishop-slice-iter-typo-fix, r=alexcrichton

This commit is contained in:
Manish Goregaokar 2015-03-29 18:22:16 +05:30
commit 963bf1db61
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@
//!
//! ## Iteration
//!
//! The slices implement `IntoIterator`. The iterators of yield references
//! to the slice elements.
//! The slices implement `IntoIterator`. The iterator yields references to the
//! slice elements.
//!
//! ```
//! let numbers = &[0, 1, 2];