Skip to content

Commit eb1b24a

Browse files
committed
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. Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
1 parent 06758d8 commit eb1b24a

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)