authorgravatar for justintwayland+github@gmail.comJustinWayland <justintwayland+github@gmail.com> 2023-10-14 04:20:11-04:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2023-10-14 11:20:11+03:00
log895c81ce72430be818befefa56046d966c01f8ea
treea532493d1f3053ce67052f00b80b94c1dfbfbb87
parent3be8490d826996dae4ce9c5564d0b2076b906f1f
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Add a missing period in Future's description


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

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