Skip to content

Commit a904c43

Browse files
committed
chore(changelog): add links for new lints rwlock_atomic and rwlock_integer
1 parent d7b1da2 commit a904c43

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
@@ -6833,6 +6833,8 @@ Released 2018-09-13
68336833
[`return_self_not_must_use`]: https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
68346834
[`reverse_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#reverse_range_loop
68356835
[`reversed_empty_ranges`]: https://rust-lang.github.io/rust-clippy/master/index.html#reversed_empty_ranges
6836+
[`rwlock_atomic`]: https://rust-lang.github.io/rust-clippy/master/index.html#rwlock_atomic
6837+
[`rwlock_integer`]: https://rust-lang.github.io/rust-clippy/master/index.html#rwlock_integer
68366838
[`same_functions_in_if_condition`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_functions_in_if_condition
68376839
[`same_item_push`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_item_push
68386840
[`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
@@ -534,8 +534,6 @@ pub static LINTS: &[&::declare_clippy_lint::LintInfo] = &[
534534
crate::mutable_debug_assertion::DEBUG_ASSERT_WITH_MUT_CALL_INFO,
535535
crate::mutex_atomic::MUTEX_ATOMIC_INFO,
536536
crate::mutex_atomic::MUTEX_INTEGER_INFO,
537-
crate::rwlock_atomic::RWLOCK_ATOMIC_INFO,
538-
crate::rwlock_atomic::RWLOCK_INTEGER_INFO,
539537
crate::needless_arbitrary_self_type::NEEDLESS_ARBITRARY_SELF_TYPE_INFO,
540538
crate::needless_bool::NEEDLESS_BOOL_INFO,
541539
crate::needless_bool::NEEDLESS_BOOL_ASSIGN_INFO,
@@ -664,6 +662,8 @@ pub static LINTS: &[&::declare_clippy_lint::LintInfo] = &[
664662
crate::returns::LET_AND_RETURN_INFO,
665663
crate::returns::NEEDLESS_RETURN_INFO,
666664
crate::returns::NEEDLESS_RETURN_WITH_QUESTION_MARK_INFO,
665+
crate::rwlock_atomic::RWLOCK_ATOMIC_INFO,
666+
crate::rwlock_atomic::RWLOCK_INTEGER_INFO,
667667
crate::same_name_method::SAME_NAME_METHOD_INFO,
668668
crate::self_named_constructors::SELF_NAMED_CONSTRUCTORS_INFO,
669669
crate::semicolon_block::SEMICOLON_INSIDE_BLOCK_INFO,

0 commit comments

Comments
 (0)