@@ -323,7 +323,7 @@ mod unicode;
323
323
mod unit_return_expecting_ord;
324
324
mod unnamed_address;
325
325
mod unnecessary_sort_by;
326
- mod unnecessary_wrap ;
326
+ mod unnecessary_wraps ;
327
327
mod unnested_or_patterns;
328
328
mod unsafe_removed_from_name;
329
329
mod unused_io_amount;
@@ -893,7 +893,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
893
893
& unnamed_address:: FN_ADDRESS_COMPARISONS ,
894
894
& unnamed_address:: VTABLE_ADDRESS_COMPARISONS ,
895
895
& unnecessary_sort_by:: UNNECESSARY_SORT_BY ,
896
- & unnecessary_wrap :: UNNECESSARY_WRAP ,
896
+ & unnecessary_wraps :: UNNECESSARY_WRAPS ,
897
897
& unnested_or_patterns:: UNNESTED_OR_PATTERNS ,
898
898
& unsafe_removed_from_name:: UNSAFE_REMOVED_FROM_NAME ,
899
899
& unused_io_amount:: UNUSED_IO_AMOUNT ,
@@ -1066,7 +1066,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1066
1066
store. register_late_pass ( || box redundant_clone:: RedundantClone ) ;
1067
1067
store. register_late_pass ( || box slow_vector_initialization:: SlowVectorInit ) ;
1068
1068
store. register_late_pass ( || box unnecessary_sort_by:: UnnecessarySortBy ) ;
1069
- store. register_late_pass ( || box unnecessary_wrap :: UnnecessaryWrap ) ;
1069
+ store. register_late_pass ( || box unnecessary_wraps :: UnnecessaryWraps ) ;
1070
1070
store. register_late_pass ( || box types:: RefToMut ) ;
1071
1071
store. register_late_pass ( || box assertions_on_constants:: AssertionsOnConstants ) ;
1072
1072
store. register_late_pass ( || box missing_const_for_fn:: MissingConstForFn ) ;
@@ -1574,7 +1574,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1574
1574
LintId :: of( & unnamed_address:: FN_ADDRESS_COMPARISONS ) ,
1575
1575
LintId :: of( & unnamed_address:: VTABLE_ADDRESS_COMPARISONS ) ,
1576
1576
LintId :: of( & unnecessary_sort_by:: UNNECESSARY_SORT_BY ) ,
1577
- LintId :: of( & unnecessary_wrap :: UNNECESSARY_WRAP ) ,
1577
+ LintId :: of( & unnecessary_wraps :: UNNECESSARY_WRAPS ) ,
1578
1578
LintId :: of( & unsafe_removed_from_name:: UNSAFE_REMOVED_FROM_NAME ) ,
1579
1579
LintId :: of( & unused_io_amount:: UNUSED_IO_AMOUNT ) ,
1580
1580
LintId :: of( & unused_unit:: UNUSED_UNIT ) ,
@@ -1779,7 +1779,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1779
1779
LintId :: of( & types:: UNNECESSARY_CAST ) ,
1780
1780
LintId :: of( & types:: VEC_BOX ) ,
1781
1781
LintId :: of( & unnecessary_sort_by:: UNNECESSARY_SORT_BY ) ,
1782
- LintId :: of( & unnecessary_wrap :: UNNECESSARY_WRAP ) ,
1782
+ LintId :: of( & unnecessary_wraps :: UNNECESSARY_WRAPS ) ,
1783
1783
LintId :: of( & unwrap:: UNNECESSARY_UNWRAP ) ,
1784
1784
LintId :: of( & useless_conversion:: USELESS_CONVERSION ) ,
1785
1785
LintId :: of( & zero_div_zero:: ZERO_DIVIDED_BY_ZERO ) ,
0 commit comments