Skip to content

Commit 35d1b19

Browse files
committed
Fix markdown.
1 parent 8682858 commit 35d1b19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/unwrap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use rustc::hir::*;
66
use syntax::ast::NodeId;
77
use syntax::codemap::Span;
88

9-
/// **What it does:** Checks for calls of unwrap[_err]() that cannot fail.
9+
/// **What it does:** Checks for calls of `unwrap[_err]()` that cannot fail.
1010
///
1111
/// **Why is this bad?** Using `if let` or `match` is more idiomatic.
1212
///
@@ -32,7 +32,7 @@ declare_clippy_lint! {
3232
"checks for calls of unwrap[_err]() that cannot fail"
3333
}
3434

35-
/// **What it does:** Checks for calls of unwrap[_err]() that will always fail.
35+
/// **What it does:** Checks for calls of `unwrap[_err]()` that will always fail.
3636
///
3737
/// **Why is this bad?** If panicking is desired, an explicit `panic!()` should be used.
3838
///

0 commit comments

Comments
 (0)