Update array.rs

This commit is contained in:
FT 2025-04-11 09:40:13 +02:00 committed by GitHub
parent c5b1b31963
commit 1654d2e899
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ pub trait ArrayExt {
/// the places where useless checks are made. /// the places where useless checks are made.
fn first(&self) -> &Self::Item { self.get_static::<0>() } fn first(&self) -> &Self::Item { self.get_static::<0>() }
/// Splits the array into two, non-overlaping smaller arrays covering the entire range. /// Splits the array into two, non-overlapping smaller arrays covering the entire range.
/// ///
/// This is almost equivalent to just calling [`sub_array`](Self::sub_array) twice, except it also /// This is almost equivalent to just calling [`sub_array`](Self::sub_array) twice, except it also
/// checks that the arrays don't overlap and that they cover the full range. This is very useful /// checks that the arrays don't overlap and that they cover the full range. This is very useful