zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 4e9dd099c5d624b101222bfc4e6f415b5375f8d7 (tree)
parent 2cbd0d3f0811d5601e1e3037d55bc768d026aff9
Author: Adrian <146006794+adrian4096@users.noreply.github.com>
Date:   Tue, 28 Oct 2025 10:26:04 +0100

std.heap.debug_allocator outdated doc (#25634)

Fixed a relatively small outdated doc string, referring to the bucket linked list.
Diffstat:
Mlib/std/heap/debug_allocator.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/heap/debug_allocator.zig b/lib/std/heap/debug_allocator.zig @@ -69,7 +69,7 @@ //! versa. //! //! When a bucket is full, a new one is allocated, containing a pointer to the -//! previous one. This singly-linked list is iterated during leak detection. +//! previous one. This doubly-linked list is iterated during leak detection. //! //! Resizing and remapping work the same on small allocations: if the size //! class would not change, then the operation succeeds, and the address is