We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3662bd8 commit bffba76Copy full SHA for bffba76
clippy_lints/src/iter_without_into_iter.rs
@@ -56,8 +56,8 @@ declare_clippy_lint! {
56
///
57
/// ### Why is this bad?
58
/// It's not bad, but having them is idiomatic and allows the type to be used in iterator chains
59
- /// by just calling `.iter()`, instead of the more awkward `<&Type>::into_iter` or `(&val).iter()` syntax
60
- /// in case of ambiguity with another `Intoiterator` impl.
+ /// by just calling `.iter()`, instead of the more awkward `<&Type>::into_iter` or `(&val).into_iter()` syntax
+ /// in case of ambiguity with another `IntoIterator` impl.
61
62
/// ### Example
63
/// ```rust
0 commit comments