From 281d4c0ff6f95de0090f3621b4bdb651cd3d0330 Mon Sep 17 00:00:00 2001 From: The Potato Chronicler <45178972+ThePotatoChronicler@users.noreply.github.com> Date: Sun, 19 Feb 2023 13:12:09 +0100 Subject: [PATCH] Fix grammatical error in doc comment --- lib/std/packed_int_array.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/packed_int_array.zig b/lib/std/packed_int_array.zig index f15ddbe974..6ef7ebeaf4 100644 --- a/lib/std/packed_int_array.zig +++ b/lib/std/packed_int_array.zig @@ -1,4 +1,4 @@ -//! An set of array and slice types that bit-pack integer elements. A normal [12]u3 +//! A set of array and slice types that bit-pack integer elements. A normal [12]u3 //! takes up 12 bytes of memory since u3's alignment is 1. PackedArray(u3, 12) only //! takes up 4 bytes of memory.