Skip to content

Commit 8966407

Browse files
committed
update lints
1 parent d7c96b5 commit 8966407

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4803,7 +4803,6 @@ Released 2018-09-13
48034803
[`or_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call
48044804
[`or_then_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#or_then_unwrap
48054805
[`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
48074806
[`overflow_check_conditional`]: https://rust-lang.github.io/rust-clippy/master/index.html#overflow_check_conditional
48084807
[`overly_complex_bool_expr`]: https://rust-lang.github.io/rust-clippy/master/index.html#overly_complex_bool_expr
48094808
[`panic`]: https://rust-lang.github.io/rust-clippy/master/index.html#panic
@@ -4925,6 +4924,7 @@ Released 2018-09-13
49254924
[`suspicious_arithmetic_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_arithmetic_impl
49264925
[`suspicious_assignment_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_assignment_formatting
49274926
[`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
49284928
[`suspicious_else_formatting`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_else_formatting
49294929
[`suspicious_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_map
49304930
[`suspicious_op_assign_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_op_assign_impl

clippy_lints/src/declared_lints.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,6 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
497497
crate::operators::VERBOSE_BIT_MASK_INFO,
498498
crate::option_env_unwrap::OPTION_ENV_UNWRAP_INFO,
499499
crate::option_if_let_else::OPTION_IF_LET_ELSE_INFO,
500-
crate::suspicious_doc_comments::SUSPICIOUS_DOC_COMMENTS_INFO,
501500
crate::overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL_INFO,
502501
crate::panic_in_result_fn::PANIC_IN_RESULT_FN_INFO,
503502
crate::panic_unimplemented::PANIC_INFO,
@@ -569,6 +568,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
569568
crate::strings::STR_TO_STRING_INFO,
570569
crate::strings::TRIM_SPLIT_WHITESPACE_INFO,
571570
crate::strlen_on_c_strings::STRLEN_ON_C_STRINGS_INFO,
571+
crate::suspicious_doc_comments::SUSPICIOUS_DOC_COMMENTS_INFO,
572572
crate::suspicious_operation_groupings::SUSPICIOUS_OPERATION_GROUPINGS_INFO,
573573
crate::suspicious_trait_impl::SUSPICIOUS_ARITHMETIC_IMPL_INFO,
574574
crate::suspicious_trait_impl::SUSPICIOUS_OP_ASSIGN_IMPL_INFO,

0 commit comments

Comments
 (0)