zig

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

commit e8907f9e9ccf4baf661d1b0ab45157a9940e70e3 (tree)
parent d77f5e7aaa94b66db4e3604f21c41b315743fb81
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sun, 26 May 2024 09:24:30 -0700

std.Progress: correct the top level doc comments

Diffstat:
Mlib/std/Progress.zig | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/lib/std/Progress.zig b/lib/std/Progress.zig @@ -1,7 +1,4 @@ -//! This API is non-allocating, non-fallible, and thread-safe. -//! -//! The tradeoff is that users of this API must provide the storage -//! for each `Progress.Node`. +//! This API is non-allocating, non-fallible, thread-safe, and lock-free. const std = @import("std"); const builtin = @import("builtin");