Update clippy_lints/src/ref_option_ref.rs

Co-authored-by: Philipp Krones <hello@philkrones.com>
This commit is contained in:
dvermd 2020-10-20 01:23:39 +02:00
parent 7fd74c6bf6
commit db40a07665

View file

@ -25,7 +25,7 @@ declare_clippy_lint! {
/// let x: Option<&u32> = Some(&0u32);
/// ```
pub REF_OPTION_REF,
style,
pedantic,
"use `Option<&T>` instead of `&Option<&T>`"
}