Skip to content

Commit f24a870

Browse files
committed
Auto merge of #13025 - ojeda:manual_inspect_nightly, r=y21
`manual_inspect`: fix `clippy::version` from 1.78.0 to 1.81.0 Although `manual_inspect`'s PR started some months ago, the lint is only available in the current nightly (1.81.0), rather than 1.78.0. ``` changelog: [`manual_inspect`]: fix `clippy::version` from 1.78.0 to 1.81.0 ```
2 parents 0abcd34 + eb1b24a commit f24a870

File tree

1 file changed

+1
-1
lines changed
  • clippy_lints/src/methods

1 file changed

+1
-1
lines changed

clippy_lints/src/methods/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4121,7 +4121,7 @@ declare_clippy_lint! {
41214121
/// ```no_run
41224122
/// let x = Some(0).inspect(|x| println!("{x}"));
41234123
/// ```
4124-
#[clippy::version = "1.78.0"]
4124+
#[clippy::version = "1.81.0"]
41254125
pub MANUAL_INSPECT,
41264126
complexity,
41274127
"use of `map` returning the original item"

0 commit comments

Comments
 (0)