diff --git a/lib/std/packed_int_array.zig b/lib/std/packed_int_array.zig index f15ddbe9740322caf830f0778ac78ff7eeea1d6d..6ef7ebeaf49da2878d8f2f1011af57ba2c7ca46b 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.