diff options
| author | Jesse Ruderman <jruderman@gmail.com> | 2021-09-09 19:21:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-09 19:21:56 -0700 |
| commit | 81ff53fd3e552fab8c56910c28e86e8b2f524bec (patch) | |
| tree | 7a6d844f14c6487c8f891be63cc537f0dc20fbca | |
| parent | 497ee321af3b8496eaccd7af7b437f18bab81abf (diff) | |
| download | rust-81ff53fd3e552fab8c56910c28e86e8b2f524bec.tar.gz rust-81ff53fd3e552fab8c56910c28e86e8b2f524bec.zip | |
Fix typo in docs for iterators
| -rw-r--r-- | library/std/src/collections/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/collections/mod.rs b/library/std/src/collections/mod.rs index 130bb5cb2b3..71645aadb1d 100644 --- a/library/std/src/collections/mod.rs +++ b/library/std/src/collections/mod.rs @@ -239,7 +239,7 @@ //! Iterators also provide a series of *adapter* methods for performing common //! threads to sequences. Among the adapters are functional favorites like `map`, //! `fold`, `skip` and `take`. Of particular interest to collections is the -//! `rev` adapter, that reverses any iterator that supports this operation. Most +//! `rev` adapter, which reverses any iterator that supports this operation. Most //! collections provide reversible iterators as the way to iterate over them in //! reverse order. //! |
