Commit 281d4c0ff6

The Potato Chronicler <45178972+ThePotatoChronicler@users.noreply.github.com>
2023-02-19 13:12:09
Fix grammatical error in doc comment
1 parent 5e7b09c
Changed files (1)
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.