From 1654d2e89934059afb3c4a61b5064672d2f3a80a Mon Sep 17 00:00:00 2001 From: FT <140458077+zeevick10@users.noreply.github.com> Date: Fri, 11 Apr 2025 09:40:13 +0200 Subject: [PATCH] Update array.rs --- internals/src/array.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internals/src/array.rs b/internals/src/array.rs index d5c639623..4142212b3 100644 --- a/internals/src/array.rs +++ b/internals/src/array.rs @@ -30,7 +30,7 @@ pub trait ArrayExt { /// the places where useless checks are made. 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 /// checks that the arrays don't overlap and that they cover the full range. This is very useful