zig

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

commit 895c81ce72430be818befefa56046d966c01f8ea (tree)
parent 3be8490d826996dae4ce9c5564d0b2076b906f1f
Author: JustinWayland <justintwayland+github@gmail.com>
Date:   Sat, 14 Oct 2023 04:20:11 -0400

Add a missing period in Future's description


Diffstat:
Mlib/std/event/future.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/event/future.zig b/lib/std/event/future.zig @@ -4,7 +4,7 @@ const assert = std.debug.assert; const testing = std.testing; const Lock = std.event.Lock; -/// This is a value that starts out unavailable, until resolve() is called +/// This is a value that starts out unavailable, until resolve() is called. /// While it is unavailable, functions suspend when they try to get() it, /// and then are resumed when resolve() is called. /// At this point the value remains forever available, and another resolve() is not allowed.