Skip to content

Commit ae2cb12

Browse files
committed
Fixed missing curly brakets
1 parent 5e05b1d commit ae2cb12

File tree

1 file changed

+1
-1
lines changed
  • clippy_lints/src/methods

1 file changed

+1
-1
lines changed

clippy_lints/src/methods/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2107,7 +2107,7 @@ declare_clippy_lint! {
21072107
/// let slice = [1, 2, 3, 4, 5, 6];
21082108
/// let (chunks, remainder) = slice.as_chunks::<2>();
21092109
/// let remainder_chunk = chunk_iter.1;
2110-
/// for chunk in chunk_iter.0.iter() {
2110+
/// for chunk in chunk_iter.0.iter() {}
21112111
/// ```
21122112
#[clippy::version = "1.93.0"]
21132113
pub CHUNKS_EXACT_WITH_CONST_SIZE,

0 commit comments

Comments
 (0)