]> git.lizzy.rs Git - rust.git/commitdiff
Dogfood
authormcarton <cartonmartin+git@gmail.com>
Sun, 17 Jul 2016 11:29:34 +0000 (13:29 +0200)
committermcarton <cartonmartin+git@gmail.com>
Sun, 17 Jul 2016 11:33:51 +0000 (13:33 +0200)
clippy_lints/src/collapsible_if.rs

index 5f273c9e950714d8cf037b61e9e23be0b5424bdc..09d3b89b05ebcbf49e972a02fcafebf947dc13e8 100644 (file)
@@ -63,7 +63,7 @@
 declare_lint! {
     pub COLLAPSIBLE_IF,
     Warn,
-    "`if`s that can be collapsed (e.g. `if x { if y { … } }` and `else { if x { … } }`)"
+    "`if`s that can be collapsed (e.g. `if x { if y { ... } }` and `else { if x { ... } }`)"
 }
 
 #[derive(Copy,Clone)]