add description
This commit is contained in:
parent
1a69b17c8c
commit
2b3e7faf8d
@ -29,7 +29,7 @@
|
|||||||
/// ### Why is this bad?
|
/// ### Why is this bad?
|
||||||
/// The could contain a useless calculation and can make function simpler.
|
/// The could contain a useless calculation and can make function simpler.
|
||||||
///
|
///
|
||||||
/// ### Known Issues
|
/// ### Known problems
|
||||||
/// It could not catch the variable that has no side effects but only used in recursion.
|
/// It could not catch the variable that has no side effects but only used in recursion.
|
||||||
///
|
///
|
||||||
/// ### Example
|
/// ### Example
|
||||||
@ -61,7 +61,7 @@
|
|||||||
#[clippy::version = "1.60.0"]
|
#[clippy::version = "1.60.0"]
|
||||||
pub ONLY_USED_IN_RECURSION,
|
pub ONLY_USED_IN_RECURSION,
|
||||||
complexity,
|
complexity,
|
||||||
"default lint description"
|
"arguments that is only used in recursion can be removed"
|
||||||
}
|
}
|
||||||
declare_lint_pass!(OnlyUsedInRecursion => [ONLY_USED_IN_RECURSION]);
|
declare_lint_pass!(OnlyUsedInRecursion => [ONLY_USED_IN_RECURSION]);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user