Skip to content

Commit d00ab2e

Browse files
committed
Auto merge of #13569 - alex-semenyuk:fix_version, r=blyxyas
Fix version for `ref_option` Close #13566 As mentioned at #13566 `ref_option` [was merged](rust-lang/rust-clippy#13336) after 1.82.0 so it wasn't include in this version changelog: none
2 parents 5678531 + 64c4cf1 commit d00ab2e

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

clippy_lints/src/functions/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ declare_clippy_lint! {
441441
/// fn bar(&self) -> Option<&String> { None }
442442
/// # }
443443
/// ```
444-
#[clippy::version = "1.82.0"]
444+
#[clippy::version = "1.83.0"]
445445
pub REF_OPTION,
446446
pedantic,
447447
"function signature uses `&Option<T>` instead of `Option<&T>`"

0 commit comments

Comments
 (0)