Skip to content

Commit

Permalink
Auto merge of #13025 - ojeda:manual_inspect_nightly, r=y21
Browse files Browse the repository at this point in the history
`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
```
  • Loading branch information
bors committed Jul 1, 2024
2 parents 0abcd34 + eb1b24a commit f24a870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/methods/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4121,7 +4121,7 @@ declare_clippy_lint! {
/// ```no_run
/// let x = Some(0).inspect(|x| println!("{x}"));
/// ```
#[clippy::version = "1.78.0"]
#[clippy::version = "1.81.0"]
pub MANUAL_INSPECT,
complexity,
"use of `map` returning the original item"
Expand Down

0 comments on commit f24a870

Please sign in to comment.