diff --git a/clippy_lints/src/if_let_redundant_pattern_matching.rs b/clippy_lints/src/if_let_redundant_pattern_matching.rs index 63b4a2b28379..92b2bab3ba83 100644 --- a/clippy_lints/src/if_let_redundant_pattern_matching.rs +++ b/clippy_lints/src/if_let_redundant_pattern_matching.rs @@ -2,7 +2,7 @@ use rustc::lint::*; use rustc::hir::*; use crate::utils::{match_qpath, paths, snippet, span_lint_and_then}; -/// **What it does:*** Lint for redundant pattern matching over `Result` or +/// **What it does:** Lint for redundant pattern matching over `Result` or /// `Option` /// /// **Why is this bad?** It's more concise and clear to just use the proper