Skip to content

Commit b694718

Browse files
committed
Ran cargo dev update_lints
1 parent 18bd97f commit b694718

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
@@ -4747,6 +4747,7 @@ Released 2018-09-13
47474747
[`iter_skip_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_skip_next
47484748
[`iter_with_drain`]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_with_drain
47494749
[`iterator_step_by_zero`]: https://rust-lang.github.io/rust-clippy/master/index.html#iterator_step_by_zero
4750+
[`join_absolute_path`]: https://rust-lang.github.io/rust-clippy/master/index.html#join_absolute_path
47504751
[`just_underscores_and_digits`]: https://rust-lang.github.io/rust-clippy/master/index.html#just_underscores_and_digits
47514752
[`large_const_arrays`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_const_arrays
47524753
[`large_digit_groups`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups
@@ -4935,7 +4936,6 @@ Released 2018-09-13
49354936
[`partialeq_ne_impl`]: https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_ne_impl
49364937
[`partialeq_to_none`]: https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_to_none
49374938
[`path_buf_push_overwrite`]: https://rust-lang.github.io/rust-clippy/master/index.html#path_buf_push_overwrite
4938-
[`join_absolute_path`]: https://rust-lang.github.io/rust-clippy/master/index.html#join_absolute_path
49394939
[`pattern_type_mismatch`]: https://rust-lang.github.io/rust-clippy/master/index.html#pattern_type_mismatch
49404940
[`permissions_set_readonly_false`]: https://rust-lang.github.io/rust-clippy/master/index.html#permissions_set_readonly_false
49414941
[`positional_named_format_parameters`]: https://rust-lang.github.io/rust-clippy/master/index.html#positional_named_format_parameters

clippy_lints/src/declared_lints.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
350350
crate::methods::ITER_OVEREAGER_CLONED_INFO,
351351
crate::methods::ITER_SKIP_NEXT_INFO,
352352
crate::methods::ITER_WITH_DRAIN_INFO,
353+
crate::methods::JOIN_ABSOLUTE_PATH_INFO,
353354
crate::methods::MANUAL_FILTER_MAP_INFO,
354355
crate::methods::MANUAL_FIND_MAP_INFO,
355356
crate::methods::MANUAL_NEXT_BACK_INFO,
@@ -380,7 +381,6 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
380381
crate::methods::OR_FUN_CALL_INFO,
381382
crate::methods::OR_THEN_UNWRAP_INFO,
382383
crate::methods::PATH_BUF_PUSH_OVERWRITE_INFO,
383-
crate::methods::JOIN_ABSOLUTE_PATH_INFO,
384384
crate::methods::RANGE_ZIP_WITH_LEN_INFO,
385385
crate::methods::REPEAT_ONCE_INFO,
386386
crate::methods::RESULT_MAP_OR_INTO_OPTION_INFO,

0 commit comments

Comments
 (0)