]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/ref_option_ref.rs
Merge remote-tracking branch 'upstream/master' into rustup
[rust.git] / clippy_lints / src / ref_option_ref.rs
index 4ab2d8025e0867610d74b9b61a8025900e5c7f7f..a914a77d48b4e3a1f1168925a9098d3896edceea 100644 (file)
@@ -1,4 +1,4 @@
-use crate::utils::{last_path_segment, match_def_path, paths, snippet, span_lint_and_sugg};
+use crate::utils::{last_path_segment, snippet, span_lint_and_sugg};
 use rustc_hir::{GenericArg, Mutability, Ty, TyKind};
 use rustc_lint::{LateContext, LateLintPass};
 use rustc_session::{declare_lint_pass, declare_tool_lint};
@@ -12,7 +12,8 @@
     /// **Why is this bad?** Since `&` is Copy, it's useless to have a
     /// reference on `Option<&T>`.
     ///
-    /// **Known problems:** None.
+    /// **Known problems:** It may be irrevelent to use this lint on
+    /// public API code as it will make a breaking change to apply it.
     ///
     /// **Example:**
     ///
@@ -24,7 +25,7 @@
     /// let x: Option<&u32> = Some(&0u32);
     /// ```
     pub REF_OPTION_REF,
-    style,
+    pedantic,
     "use `Option<&T>` instead of `&Option<&T>`"
 }
 
@@ -54,10 +55,10 @@ fn check_ty(&mut self, cx: &LateContext<'tcx>, ty: &'tcx Ty<'tcx>) {
                     cx,
                     REF_OPTION_REF,
                     ty.span,
-                    "since & implements Copy trait, &Option<&T> can be simplifyied into Option<&T>",
+                    "since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`",
                     "try",
                     format!("Option<{}>", &snippet(cx, inner_ty.span, "..")),
-                    Applicability::Unspecified,
+                    Applicability::MaybeIncorrect,
                 );
             }
         }