Skip to content

Commit

Permalink
Auto merge of rust-lang#13569 - alex-semenyuk:fix_version, r=blyxyas
Browse files Browse the repository at this point in the history
Fix version for `ref_option`

Close rust-lang#13566
As mentioned at rust-lang#13566 `ref_option` [was merged](rust-lang#13336) after 1.82.0 so it wasn't include in this version

changelog: none
  • Loading branch information
bors committed Oct 20, 2024
2 parents 5678531 + 64c4cf1 commit d00ab2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/functions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ declare_clippy_lint! {
/// fn bar(&self) -> Option<&String> { None }
/// # }
/// ```
#[clippy::version = "1.82.0"]
#[clippy::version = "1.83.0"]
pub REF_OPTION,
pedantic,
"function signature uses `&Option<T>` instead of `Option<&T>`"
Expand Down

0 comments on commit d00ab2e

Please sign in to comment.