From 94d8bb5e3ffdee4641728f8a0913c8d1e111433e Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 1 May 2026 11:28:11 +0200 Subject: [PATCH] Fix `IntoChunks` docstring IIUC, `ChunkLazy` is no longer used. --- src/groupbylazy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/groupbylazy.rs b/src/groupbylazy.rs index f2f717fb9..99778a87c 100644 --- a/src/groupbylazy.rs +++ b/src/groupbylazy.rs @@ -522,7 +522,7 @@ where } } -/// `ChunkLazy` is the storage for a lazy chunking operation. +/// `IntoChunks` is the storage for a lazy chunking operation. /// /// `IntoChunks` behaves just like `ChunkBy`: it is iterable, and /// it only buffers if several chunk iterators are alive at the same time.