]> git.lizzy.rs Git - rust.git/commitdiff
Update README
authormcarton <cartonmartin+git@gmail.com>
Sun, 17 Jul 2016 11:38:17 +0000 (13:38 +0200)
committermcarton <cartonmartin+git@gmail.com>
Sun, 17 Jul 2016 11:38:17 +0000 (13:38 +0200)
README.md

index b50412c732ce1d21aba257c228d40b9e81cb8fb0..380b49c90425d13a98afa303886764419536fc6e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ name
 [clone_on_copy](https://github.com/Manishearth/rust-clippy/wiki#clone_on_copy)                                       | warn    | using `clone` on a `Copy` type
 [cmp_nan](https://github.com/Manishearth/rust-clippy/wiki#cmp_nan)                                                   | deny    | comparisons to NAN (which will always return false, which is probably not intended)
 [cmp_owned](https://github.com/Manishearth/rust-clippy/wiki#cmp_owned)                                               | warn    | creating owned instances for comparing with others, e.g. `x == "foo".to_string()`
-[collapsible_if](https://github.com/Manishearth/rust-clippy/wiki#collapsible_if)                                     | warn    | `if`s that can be collapsed (e.g. `if x { if y { … } }` and `else { if x { … } }`)
+[collapsible_if](https://github.com/Manishearth/rust-clippy/wiki#collapsible_if)                                     | warn    | `if`s that can be collapsed (e.g. `if x { if y { ... } }` and `else { if x { ... } }`)
 [crosspointer_transmute](https://github.com/Manishearth/rust-clippy/wiki#crosspointer_transmute)                     | warn    | transmutes that have to or from types that are a pointer to the other
 [cyclomatic_complexity](https://github.com/Manishearth/rust-clippy/wiki#cyclomatic_complexity)                       | warn    | finds functions that should be split up into multiple functions
 [deprecated_semver](https://github.com/Manishearth/rust-clippy/wiki#deprecated_semver)                               | warn    | `Warn` on `#[deprecated(since = "x")]` where x is not semver