We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e928297 + 41a63bd commit 27990edCopy full SHA for 27990ed
src/libcollections/slice.rs
@@ -407,7 +407,7 @@ impl<T> [T] {
407
}
408
409
/// Returns an iterator over `size` elements of the slice at a
410
- /// time. The chunks do not overlap. If `size` does not divide the
+ /// time. The chunks are slices and do not overlap. If `size` does not divide the
411
/// length of the slice, then the last chunk will not have length
412
/// `size`.
413
///
@@ -433,7 +433,7 @@ impl<T> [T] {
433
434
435
/// Returns an iterator over `chunk_size` elements of the slice at a time.
436
- /// The chunks are mutable and do not overlap. If `chunk_size` does
+ /// The chunks are mutable slices, and do not overlap. If `chunk_size` does
437
/// not divide the length of the slice, then the last chunk will not
438
/// have length `chunk_size`.
439
0 commit comments