about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-01-07 13:38:32 +0000
committerbors <bors@rust-lang.org>2021-01-07 13:38:32 +0000
commite15bef9d3f7ea89a821abbc861e09be285a7f619 (patch)
treee7db9bd975234a5993c98e526d248a959c253a31
parent8e5c5a64a5e6689ef25809d9b77380c912572060 (diff)
parent2b3c0ade6d34d26698806842eb8d4ad64b64a0ef (diff)
downloadrust-e15bef9d3f7ea89a821abbc861e09be285a7f619.tar.gz
rust-e15bef9d3f7ea89a821abbc861e09be285a7f619.zip
Auto merge of #6558 - stanislav-tkach:patch-2, r=flip1995
Fix typo: `irrevelent` -> `irrelevant`

changelog: none
-rw-r--r--clippy_lints/src/ref_option_ref.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/ref_option_ref.rs b/clippy_lints/src/ref_option_ref.rs
index 803ebada54b..8cd6692ce03 100644
--- a/clippy_lints/src/ref_option_ref.rs
+++ b/clippy_lints/src/ref_option_ref.rs
@@ -13,7 +13,7 @@ declare_clippy_lint! {
     /// **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:**