Fix version for ref_option

This commit is contained in:
alexey semenyuk 2024-10-20 14:43:32 +05:00 committed by GitHub
parent 5678531c6d
commit 64c4cf1cba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>`"