Skip to content

Commit 1654d2e

Browse files
authored
Update array.rs
1 parent c5b1b31 commit 1654d2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internals/src/array.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pub trait ArrayExt {
3030
/// the places where useless checks are made.
3131
fn first(&self) -> &Self::Item { self.get_static::<0>() }
3232

33-
/// Splits the array into two, non-overlaping smaller arrays covering the entire range.
33+
/// Splits the array into two, non-overlapping smaller arrays covering the entire range.
3434
///
3535
/// This is almost equivalent to just calling [`sub_array`](Self::sub_array) twice, except it also
3636
/// checks that the arrays don't overlap and that they cover the full range. This is very useful

0 commit comments

Comments
 (0)