From 397649fb0934b75122e795bfb234d46693425d98 Mon Sep 17 00:00:00 2001 From: Bogdan Romanyuk <65823030+wrongnull@users.noreply.github.com> Date: Sun, 16 Apr 2023 20:45:32 +0300 Subject: [PATCH] Removing duplicate word in doc --- lib/std/multi_array_list.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/multi_array_list.zig b/lib/std/multi_array_list.zig index e7b9586eba..838965f8b1 100644 --- a/lib/std/multi_array_list.zig +++ b/lib/std/multi_array_list.zig @@ -11,7 +11,7 @@ const testing = std.testing; /// stores separate lists for each field of the struct or /// lists of tags and bare unions. /// This allows for memory savings if the struct or union has padding, -/// and also improves cache usage if only some fields or or just tags +/// and also improves cache usage if only some fields or just tags /// are needed for a computation. The primary API for accessing fields is /// the `slice()` function, which computes the start pointers /// for the array of each field. From the slice you can call