Formatting fixed

This commit is contained in:
llogiq 2015-05-23 12:32:29 +02:00
parent 0ed8e4e968
commit b51ca1c3db
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ declare_lint! {
/// |`<` or `>=`| `&` |`x & 2 < 3` |`true` |`m < c` |
/// |`>` or `<=`| `&` |`x & 1 > 1` |`false` |`m <= c` |
/// |`==` or `!=`| `|` |`x | 1 == 0`|`false` |`c | m != c` |
/// |`<` or `>=`| `|` |`x | 1 < 1` |`false` |`m >= c` |
/// |`<` or `>=`| `|` |`x | 1 < 1` |`false` |`m >= c` |
/// |`<=` or `>` | `|` |`x | 1 > 0` |`true` |`m > c` |
///
/// This lint is **deny** by default