authorgravatar for seda18@rolmail.netDavid Senoner <seda18@rolmail.net> 2026-05-26 15:45:41+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-05-29 20:41:11+02:00
log53c66e652764d176f1ef3f277b6c02138841b29b
treea18e82d41da562e1697600597b99d122102c4a21
parentbfc1484c0fe3adc3b45791f6ae18a362980c991e

std: Update incorrect docs about ArrayHashMap being managed


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

lib/std/array_hash_map.zig+1-2
......@@ -57,8 +57,7 @@ pub const ArrayHashMap = Custom;
5757/// the (well defined) behavior when mixing insertions and deletions with iteration.
5858///
5959/// This type does not store an `Allocator` field - the `Allocator` must be passed in
60/// with each function call that requires it. See `ArrayHashMap` for a type that stores
61/// an `Allocator` field for convenience.
60/// with each function call that requires it.
6261///
6362/// Can be initialized directly using the default field values.
6463///