From 00a0efc5665d9be2e64c9b703bf22f64b84487a5 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 15 Jun 2018 00:19:19 -0700 Subject: [PATCH] Doc fix syntax --- clippy_lints/src/if_let_redundant_pattern_matching.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/if_let_redundant_pattern_matching.rs b/clippy_lints/src/if_let_redundant_pattern_matching.rs index 63b4a2b28..92b2bab3b 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