needless_range_loop: improve documentation
This commit is contained in:
parent
96c28d1f69
commit
4d266d31de
3 changed files with 7 additions and 6 deletions
|
|
@ -49,7 +49,7 @@ error: the loop variable `i` is used to index `vec`
|
|||
LL | for i in 0..vec.len() {
|
||||
| ^^^^^^^^^^^^
|
||||
|
|
||||
help: consider using an iterator
|
||||
help: consider using an iterator and enumerate
|
||||
|
|
||||
LL | for (i, <item>) in vec.iter().enumerate() {
|
||||
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -126,7 +126,7 @@ error: the loop variable `i` is used to index `vec`
|
|||
LL | for i in 5..vec.len() {
|
||||
| ^^^^^^^^^^^^
|
||||
|
|
||||
help: consider using an iterator
|
||||
help: consider using an iterator and enumerate
|
||||
|
|
||||
LL | for (i, <item>) in vec.iter().enumerate().skip(5) {
|
||||
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -137,7 +137,7 @@ error: the loop variable `i` is used to index `vec`
|
|||
LL | for i in 5..10 {
|
||||
| ^^^^^
|
||||
|
|
||||
help: consider using an iterator
|
||||
help: consider using an iterator and enumerate
|
||||
|
|
||||
LL | for (i, <item>) in vec.iter().enumerate().take(10).skip(5) {
|
||||
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -148,7 +148,7 @@ error: the loop variable `i` is used to index `vec`
|
|||
LL | for i in 0..vec.len() {
|
||||
| ^^^^^^^^^^^^
|
||||
|
|
||||
help: consider using an iterator
|
||||
help: consider using an iterator and enumerate
|
||||
|
|
||||
LL | for (i, <item>) in vec.iter_mut().enumerate() {
|
||||
| ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue