]> git.lizzy.rs Git - rust.git/commitdiff
Close code block in docstring
authorGeorg Brandl <georg@python.org>
Mon, 8 Aug 2016 11:34:21 +0000 (13:34 +0200)
committerGeorg Brandl <georg@python.org>
Mon, 8 Aug 2016 11:34:21 +0000 (13:34 +0200)
clippy_lints/src/booleans.rs

index c6c70640bbae08a8fd4d023850599fd85998b285..b27984d9d2be9d380d63a4f4fa2d7ff876bf5ab6 100644 (file)
@@ -19,6 +19,7 @@
 /// ```rust
 /// if a && true  // should be: if a
 /// if !(a == b)  // should be: if a != b
+/// ```
 declare_lint! {
     pub NONMINIMAL_BOOL,
     Allow,