File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ declare_clippy_lint! {
16
16
/// Checks for tuple<=>array conversions that are not done with `.into()`.
17
17
///
18
18
/// ### Why is this bad?
19
- /// It's unnecessary complexity. `.into()` works for tuples<=>arrays at or below 12 elements and
20
- /// conveys the intent a lot better, while also leaving less room for hard to spot bugs!
19
+ /// It may be unnecessary complexity. `.into()` works for converting tuples
20
+ /// <=> arrays of up to 12 elements and may convey intent more clearly.
21
21
///
22
22
/// ### Example
23
23
/// ```rust,ignore
@@ -31,7 +31,7 @@ declare_clippy_lint! {
31
31
/// ```
32
32
#[ clippy:: version = "1.72.0" ]
33
33
pub TUPLE_ARRAY_CONVERSIONS ,
34
- complexity ,
34
+ pedantic ,
35
35
"checks for tuple<=>array conversions that are not done with `.into()`"
36
36
}
37
37
impl_lint_pass ! ( TupleArrayConversions => [ TUPLE_ARRAY_CONVERSIONS ] ) ;
You can’t perform that action at this time.
0 commit comments