]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/ref_option_ref.rs
ast/hir: Rename field-related structures
[rust.git] / clippy_lints / src / ref_option_ref.rs
index 803ebada54b790cd2f172e3455cc6f3123e5347d..8cd6692ce03a09ceb9b42647865d101ec3c42771 100644 (file)
@@ -13,7 +13,7 @@
     /// **Why is this bad?** Since `&` is Copy, it's useless to have a
     /// reference on `Option<&T>`.
     ///
-    /// **Known problems:** It may be irrevelent to use this lint on
+    /// **Known problems:** It may be irrelevant to use this lint on
     /// public API code as it will make a breaking change to apply it.
     ///
     /// **Example:**