From 0c231128467514141a28cd51d4ecabe1431dd8b1 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 15 Jun 2018 00:20:46 -0700 Subject: [PATCH] More doc fixes --- clippy_lints/src/unwrap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/unwrap.rs b/clippy_lints/src/unwrap.rs index db840c79a29..1d346b0bba7 100644 --- a/clippy_lints/src/unwrap.rs +++ b/clippy_lints/src/unwrap.rs @@ -6,7 +6,7 @@ use rustc::hir::*; use syntax::ast::NodeId; use syntax::codemap::Span; -/// **What it does:** Checks for calls of unwrap[_err]() that cannot fail. +/// **What it does:** Checks for calls of `unwrap[_err]()` that cannot fail. /// /// **Why is this bad?** Using `if let` or `match` is more idiomatic. ///