From 83ef365b721ff33d73e65f49510b2442aa73c8da Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Thu, 12 Jun 2025 15:48:09 +0200 Subject: [PATCH] Update iterators.rs --- utils/src/iterators.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/src/iterators.rs b/utils/src/iterators.rs index 612e9507..df1d3c9a 100644 --- a/utils/src/iterators.rs +++ b/utils/src/iterators.rs @@ -1,6 +1,6 @@ use std::num::NonZeroUsize; -/// Given an iterator that's clonable, split it into two iterators +/// Given an iterator that's cloneable, split it into two iterators /// at a given maximum number of elements. pub fn iterator_split( it: I,