Skip to content

Commit 7ab4af3

Browse files
committed
[ needless_for_each ]: fix doc nits
1 parent 5e60afb commit 7ab4af3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clippy_lints/src/needless_for_each.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ declare_clippy_lint! {
2525
/// ```no_run
2626
/// let v = vec![0, 1, 2];
2727
/// v.iter().for_each(|elem| {
28-
/// println!("{}", elem);
28+
/// println!("{elem}");
2929
/// })
3030
/// ```
3131
/// Use instead:
3232
/// ```no_run
3333
/// let v = vec![0, 1, 2];
34-
/// for elem in v.iter() {
35-
/// println!("{}", elem);
34+
/// for elem in &v {
35+
/// println!("{elem}");
3636
/// }
3737
/// ```
3838
///

0 commit comments

Comments
 (0)