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 1a69b17 commit 2b3e7faCopy full SHA for 2b3e7fa
clippy_lints/src/only_used_in_recursion.rs
@@ -29,7 +29,7 @@ declare_clippy_lint! {
29
/// ### Why is this bad?
30
/// The could contain a useless calculation and can make function simpler.
31
///
32
- /// ### Known Issues
+ /// ### Known problems
33
/// It could not catch the variable that has no side effects but only used in recursion.
34
35
/// ### Example
@@ -61,7 +61,7 @@ declare_clippy_lint! {
61
#[clippy::version = "1.60.0"]
62
pub ONLY_USED_IN_RECURSION,
63
complexity,
64
- "default lint description"
+ "arguments that is only used in recursion can be removed"
65
}
66
declare_lint_pass!(OnlyUsedInRecursion => [ONLY_USED_IN_RECURSION]);
67
0 commit comments