Rollup merge of #88807 - jruderman:which_reverses, r=joshtriplett

Fix typo in docs for iterators
This commit is contained in:
Manish Goregaokar 2021-09-10 08:23:26 -07:00 committed by GitHub
commit 00553034db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.
//!