From 8c58de5e2cffa9c04389cebf0fe3f8a3b7aaa4c3 Mon Sep 17 00:00:00 2001 From: Tethys Svensson Date: Sun, 17 Jul 2022 14:18:36 +0200 Subject: [PATCH] Fix for `rchunks_exact` doc `rchunks_exact` is not a more optimized version of `chunks`, but of `rchunks`. --- library/core/src/slice/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/slice/mod.rs b/library/core/src/slice/mod.rs index 77fd1ec2b8ea2..1270a72634b9d 100644 --- a/library/core/src/slice/mod.rs +++ b/library/core/src/slice/mod.rs @@ -1340,7 +1340,7 @@ impl [T] { /// from the `remainder` function of the iterator. /// /// Due to each chunk having exactly `chunk_size` elements, the compiler can often optimize the - /// resulting code better than in the case of [`chunks`]. + /// resulting code better than in the case of [`rchunks`]. /// /// See [`rchunks`] for a variant of this iterator that also returns the remainder as a smaller /// chunk, and [`chunks_exact`] for the same iterator but starting at the beginning of the