authorgravatar for wrongnull@gmail.comBogdan Romanyuk <wrongnull@gmail.com> 2023-04-16 20:45:32+03:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2023-04-16 22:10:48+03:00
log397649fb0934b75122e795bfb234d46693425d98
tree0c8558764f93e0b80b647c4476a335f960da3a53
parentbc804eb8419156980ec920c1ccb502c257c679b4

Removing duplicate word in doc


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/multi_array_list.zig+1-1
...@@ -11,7 +11,7 @@ const testing = std.testing;...@@ -11,7 +11,7 @@ const testing = std.testing;
11/// stores separate lists for each field of the struct or11/// stores separate lists for each field of the struct or
12/// lists of tags and bare unions.12/// lists of tags and bare unions.
13/// This allows for memory savings if the struct or union has padding,13/// This allows for memory savings if the struct or union has padding,
14/// and also improves cache usage if only some fields or or just tags14/// and also improves cache usage if only some fields or just tags
15/// are needed for a computation. The primary API for accessing fields is15/// are needed for a computation. The primary API for accessing fields is
16/// the `slice()` function, which computes the start pointers16/// the `slice()` function, which computes the start pointers
17/// for the array of each field. From the slice you can call17/// for the array of each field. From the slice you can call