mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
Rollup merge of #83270 - steffahn:missing_word_in_skip_while_doc, r=joshtriplett
Fix typo/inaccuracy in the documentation of Iterator::skip_while One of the examples used to say “this leads to a possibly confusing situation, where the type of the closure is a double reference” while _actually_ referring to the type of the closure _argument_. This PR just changes a single word in documentation. `````@rustbot````` modify labels: A-iterators, T-doc, T-lang
This commit is contained in:
commit
99f411d438
@ -1012,7 +1012,7 @@ pub trait Iterator {
|
||||
///
|
||||
/// Because the closure passed to `skip_while()` takes a reference, and many
|
||||
/// iterators iterate over references, this leads to a possibly confusing
|
||||
/// situation, where the type of the closure is a double reference:
|
||||
/// situation, where the type of the closure argument is a double reference:
|
||||
///
|
||||
/// ```
|
||||
/// let a = [-1, 0, 1];
|
||||
|
Loading…
Reference in New Issue
Block a user