]> git.lizzy.rs Git - rust.git/commitdiff
Run update_lints.py
authorYati Sagade <yati.sagade@gmail.com>
Mon, 6 Feb 2017 13:31:29 +0000 (14:31 +0100)
committerYati Sagade <yati.sagade@gmail.com>
Sat, 8 Apr 2017 21:31:23 +0000 (23:31 +0200)
README.md

index 9058c901d1913cfadc363470d4c26677248da9a6..f63e7412bb4902aceffc429809e9cdd66db2bbc5 100644 (file)
--- a/README.md
+++ b/README.md
@@ -288,6 +288,7 @@ name
 [mutex_integer](https://github.com/Manishearth/rust-clippy/wiki#mutex_integer)                                         | allow   | using a mutex for an integer type
 [needless_bool](https://github.com/Manishearth/rust-clippy/wiki#needless_bool)                                         | warn    | if-statements with plain booleans in the then- and else-clause, e.g. `if p { true } else { false }`
 [needless_borrow](https://github.com/Manishearth/rust-clippy/wiki#needless_borrow)                                     | warn    | taking a reference that is going to be automatically dereferenced
+[needless_continue](https://github.com/Manishearth/rust-clippy/wiki#needless_continue)                                 | warn    | `continue` statements that can be replaced by a rearrangement of code
 [needless_lifetimes](https://github.com/Manishearth/rust-clippy/wiki#needless_lifetimes)                               | warn    | using explicit lifetimes for references in function arguments when elision rules would allow omitting them
 [needless_pass_by_value](https://github.com/Manishearth/rust-clippy/wiki#needless_pass_by_value)                       | warn    | functions taking arguments by value, but not consuming them in its body
 [needless_range_loop](https://github.com/Manishearth/rust-clippy/wiki#needless_range_loop)                             | warn    | for-looping over a range of indices where an iterator over items would do