about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJesse Ruderman <jruderman@gmail.com>2021-09-09 19:21:56 -0700
committerGitHub <noreply@github.com>2021-09-09 19:21:56 -0700
commit81ff53fd3e552fab8c56910c28e86e8b2f524bec (patch)
tree7a6d844f14c6487c8f891be63cc537f0dc20fbca
parent497ee321af3b8496eaccd7af7b437f18bab81abf (diff)
downloadrust-81ff53fd3e552fab8c56910c28e86e8b2f524bec.tar.gz
rust-81ff53fd3e552fab8c56910c28e86e8b2f524bec.zip
Fix typo in docs for iterators
-rw-r--r--library/std/src/collections/mod.rs2
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.
 //!