@@ -323,7 +323,7 @@ mod unicode;
323323mod unit_return_expecting_ord;
324324mod unnamed_address;
325325mod unnecessary_sort_by;
326- mod unnecessary_wrap ;
326+ mod unnecessary_wraps ;
327327mod unnested_or_patterns;
328328mod unsafe_removed_from_name;
329329mod unused_io_amount;
@@ -893,7 +893,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
893893 & unnamed_address:: FN_ADDRESS_COMPARISONS ,
894894 & unnamed_address:: VTABLE_ADDRESS_COMPARISONS ,
895895 & unnecessary_sort_by:: UNNECESSARY_SORT_BY ,
896- & unnecessary_wrap :: UNNECESSARY_WRAP ,
896+ & unnecessary_wraps :: UNNECESSARY_WRAPS ,
897897 & unnested_or_patterns:: UNNESTED_OR_PATTERNS ,
898898 & unsafe_removed_from_name:: UNSAFE_REMOVED_FROM_NAME ,
899899 & unused_io_amount:: UNUSED_IO_AMOUNT ,
@@ -1066,7 +1066,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
10661066 store. register_late_pass ( || box redundant_clone:: RedundantClone ) ;
10671067 store. register_late_pass ( || box slow_vector_initialization:: SlowVectorInit ) ;
10681068 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 ) ;
10701070 store. register_late_pass ( || box types:: RefToMut ) ;
10711071 store. register_late_pass ( || box assertions_on_constants:: AssertionsOnConstants ) ;
10721072 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:
15741574 LintId :: of( & unnamed_address:: FN_ADDRESS_COMPARISONS ) ,
15751575 LintId :: of( & unnamed_address:: VTABLE_ADDRESS_COMPARISONS ) ,
15761576 LintId :: of( & unnecessary_sort_by:: UNNECESSARY_SORT_BY ) ,
1577- LintId :: of( & unnecessary_wrap :: UNNECESSARY_WRAP ) ,
1577+ LintId :: of( & unnecessary_wraps :: UNNECESSARY_WRAPS ) ,
15781578 LintId :: of( & unsafe_removed_from_name:: UNSAFE_REMOVED_FROM_NAME ) ,
15791579 LintId :: of( & unused_io_amount:: UNUSED_IO_AMOUNT ) ,
15801580 LintId :: of( & unused_unit:: UNUSED_UNIT ) ,
@@ -1779,7 +1779,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
17791779 LintId :: of( & types:: UNNECESSARY_CAST ) ,
17801780 LintId :: of( & types:: VEC_BOX ) ,
17811781 LintId :: of( & unnecessary_sort_by:: UNNECESSARY_SORT_BY ) ,
1782- LintId :: of( & unnecessary_wrap :: UNNECESSARY_WRAP ) ,
1782+ LintId :: of( & unnecessary_wraps :: UNNECESSARY_WRAPS ) ,
17831783 LintId :: of( & unwrap:: UNNECESSARY_UNWRAP ) ,
17841784 LintId :: of( & useless_conversion:: USELESS_CONVERSION ) ,
17851785 LintId :: of( & zero_div_zero:: ZERO_DIVIDED_BY_ZERO ) ,
0 commit comments