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.
2 parents 7624045 + bffba76 commit 33f49f3Copy full SHA for 33f49f3
clippy_lints/src/iter_without_into_iter.rs
@@ -58,8 +58,8 @@ declare_clippy_lint! {
58
///
59
/// ### Why is this bad?
60
/// It's not bad, but having them is idiomatic and allows the type to be used in iterator chains
61
- /// by just calling `.iter()`, instead of the more awkward `<&Type>::into_iter` or `(&val).iter()` syntax
62
- /// 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.
63
64
/// ### Example
65
/// ```rust
0 commit comments