File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4803,7 +4803,6 @@ Released 2018-09-13
4803
4803
[ `or_fun_call` ] : https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call
4804
4804
[ `or_then_unwrap` ] : https://rust-lang.github.io/rust-clippy/master/index.html#or_then_unwrap
4805
4805
[ `out_of_bounds_indexing` ] : https://rust-lang.github.io/rust-clippy/master/index.html#out_of_bounds_indexing
4806
- [ `outer_doc_comment_bang` ] : https://rust-lang.github.io/rust-clippy/master/index.html#outer_doc_comment_bang
4807
4806
[ `overflow_check_conditional` ] : https://rust-lang.github.io/rust-clippy/master/index.html#overflow_check_conditional
4808
4807
[ `overly_complex_bool_expr` ] : https://rust-lang.github.io/rust-clippy/master/index.html#overly_complex_bool_expr
4809
4808
[ `panic` ] : https://rust-lang.github.io/rust-clippy/master/index.html#panic
@@ -4925,6 +4924,7 @@ Released 2018-09-13
4925
4924
[ `suspicious_arithmetic_impl` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_arithmetic_impl
4926
4925
[ `suspicious_assignment_formatting` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_assignment_formatting
4927
4926
[ `suspicious_command_arg_space` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_command_arg_space
4927
+ [ `suspicious_doc_comments` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_doc_comments
4928
4928
[ `suspicious_else_formatting` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_else_formatting
4929
4929
[ `suspicious_map` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_map
4930
4930
[ `suspicious_op_assign_impl` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_op_assign_impl
Original file line number Diff line number Diff line change @@ -497,7 +497,6 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
497
497
crate :: operators:: VERBOSE_BIT_MASK_INFO ,
498
498
crate :: option_env_unwrap:: OPTION_ENV_UNWRAP_INFO ,
499
499
crate :: option_if_let_else:: OPTION_IF_LET_ELSE_INFO ,
500
- crate :: suspicious_doc_comments:: SUSPICIOUS_DOC_COMMENTS_INFO ,
501
500
crate :: overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL_INFO ,
502
501
crate :: panic_in_result_fn:: PANIC_IN_RESULT_FN_INFO ,
503
502
crate :: panic_unimplemented:: PANIC_INFO ,
@@ -569,6 +568,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
569
568
crate :: strings:: STR_TO_STRING_INFO ,
570
569
crate :: strings:: TRIM_SPLIT_WHITESPACE_INFO ,
571
570
crate :: strlen_on_c_strings:: STRLEN_ON_C_STRINGS_INFO ,
571
+ crate :: suspicious_doc_comments:: SUSPICIOUS_DOC_COMMENTS_INFO ,
572
572
crate :: suspicious_operation_groupings:: SUSPICIOUS_OPERATION_GROUPINGS_INFO ,
573
573
crate :: suspicious_trait_impl:: SUSPICIOUS_ARITHMETIC_IMPL_INFO ,
574
574
crate :: suspicious_trait_impl:: SUSPICIOUS_OP_ASSIGN_IMPL_INFO ,
You can’t perform that action at this time.
0 commit comments