Commit 1bb8b4ad61

Andrew Kelley <andrew@ziglang.org>
2025-02-06 23:47:22
std.heap: fix wrong deprecation date
1 parent ff8e759
Changed files (1)
lib
lib/std/heap.zig
@@ -18,9 +18,9 @@ pub const FixedBufferAllocator = @import("heap/FixedBufferAllocator.zig");
 pub const DebugAllocatorConfig = @import("heap/debug_allocator.zig").Config;
 pub const DebugAllocator = @import("heap/debug_allocator.zig").DebugAllocator;
 pub const Check = enum { ok, leak };
-/// Deprecated; to be removed after 0.15.0 is tagged.
+/// Deprecated; to be removed after 0.14.0 is tagged.
 pub const GeneralPurposeAllocatorConfig = DebugAllocatorConfig;
-/// Deprecated; to be removed after 0.15.0 is tagged.
+/// Deprecated; to be removed after 0.14.0 is tagged.
 pub const GeneralPurposeAllocator = DebugAllocator;
 
 const memory_pool = @import("heap/memory_pool.zig");