docs: Note existence of scentence case function #170
Annotations
4 errors
this loop could be written as a `for` loop:
src/lib.rs#L184
error: this loop could be written as a `for` loop
--> src/lib.rs:184:5
|
184 | while let Some(word) = words.next() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for word in words`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
|
this loop could be written as a `for` loop:
src/lib.rs#L173
error: this loop could be written as a `for` loop
--> src/lib.rs:173:5
|
173 | while let Some(word) = words.next() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for word in words`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
= note: `-D clippy::while-let-on-iterator` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::while_let_on_iterator)]`
|
this loop could be written as a `for` loop:
src/lib.rs#L184
error: this loop could be written as a `for` loop
--> src/lib.rs:184:5
|
184 | while let Some(word) = words.next() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for word in words`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
|
this loop could be written as a `for` loop:
src/lib.rs#L173
error: this loop could be written as a `for` loop
--> src/lib.rs:173:5
|
173 | while let Some(word) = words.next() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for word in words`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
= note: `-D clippy::while-let-on-iterator` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::while_let_on_iterator)]`
|