Skip to content

Commit 7ac9160

Browse files
committed
chore(changelog): add links for new lints rwlock_atomic and rwlock_integer
1 parent db4208a commit 7ac9160

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6837,6 +6837,8 @@ Released 2018-09-13
68376837
[`return_self_not_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
68386838
[`reverse_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#reverse_range_loop
68396839
[`reversed_empty_ranges`]: https://rust-lang.github.io/rust-clippy/master/index.html#reversed_empty_ranges
6840+
[`rwlock_atomic`]: https://rust-lang.github.io/rust-clippy/master/index.html#rwlock_atomic
6841+
[`rwlock_integer`]: https://rust-lang.github.io/rust-clippy/master/index.html#rwlock_integer
68406842
[`same_functions_in_if_condition`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_functions_in_if_condition
68416843
[`same_item_push`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_item_push
68426844
[`same_name_method`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_name_method

clippy_lints/src/declared_lints.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -537,8 +537,6 @@ pub static LINTS: &[&::declare_clippy_lint::LintInfo] = &[
537537
crate::mutable_debug_assertion::DEBUG_ASSERT_WITH_MUT_CALL_INFO,
538538
crate::mutex_atomic::MUTEX_ATOMIC_INFO,
539539
crate::mutex_atomic::MUTEX_INTEGER_INFO,
540-
crate::rwlock_atomic::RWLOCK_ATOMIC_INFO,
541-
crate::rwlock_atomic::RWLOCK_INTEGER_INFO,
542540
crate::needless_arbitrary_self_type::NEEDLESS_ARBITRARY_SELF_TYPE_INFO,
543541
crate::needless_bool::NEEDLESS_BOOL_INFO,
544542
crate::needless_bool::NEEDLESS_BOOL_ASSIGN_INFO,
@@ -668,6 +666,8 @@ pub static LINTS: &[&::declare_clippy_lint::LintInfo] = &[
668666
crate::returns::LET_AND_RETURN_INFO,
669667
crate::returns::NEEDLESS_RETURN_INFO,
670668
crate::returns::NEEDLESS_RETURN_WITH_QUESTION_MARK_INFO,
669+
crate::rwlock_atomic::RWLOCK_ATOMIC_INFO,
670+
crate::rwlock_atomic::RWLOCK_INTEGER_INFO,
671671
crate::same_name_method::SAME_NAME_METHOD_INFO,
672672
crate::self_named_constructors::SELF_NAMED_CONSTRUCTORS_INFO,
673673
crate::semicolon_block::SEMICOLON_INSIDE_BLOCK_INFO,

0 commit comments

Comments
 (0)