More doc fixes

This commit is contained in:
Manish Goregaokar 2018-06-15 00:20:46 -07:00
parent 00a0efc566
commit 0c23112846

View file

@ -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.
///