Add a missing period in Future's description

This commit is contained in:
JustinWayland 2023-10-14 04:20:11 -04:00 committed by GitHub
parent 3be8490d82
commit 895c81ce72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.