diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-29 18:22:16 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-29 18:22:16 +0530 |
| commit | 963bf1db61061f736cc6f8deb9e87c7415464d7e (patch) | |
| tree | b90444a22a9e6924c85c15133d659bcf24eaf205 | |
| parent | a96ee9d9625dcf86ab7f4857fc95e52b06ed234f (diff) | |
| parent | 256e78a39c99f9cc7304dba61caf02e180d68c38 (diff) | |
| download | rust-963bf1db61061f736cc6f8deb9e87c7415464d7e.tar.gz rust-963bf1db61061f736cc6f8deb9e87c7415464d7e.zip | |
Rollup merge of #23821 - nicholasbishop:bishop-slice-iter-typo-fix, r=alexcrichton
| -rw-r--r-- | src/libcollections/slice.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcollections/slice.rs b/src/libcollections/slice.rs index ba1ab75de80..14dcd52fe80 100644 --- a/src/libcollections/slice.rs +++ b/src/libcollections/slice.rs @@ -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]; |
