hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 5ea4faabf0c73de516525abf84ce7f63fd5d5eeb
parent db8164f92e9de3d54b92e4cc85c80151ac25770f
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 19 Oct 2021 15:52:07 +0200

iobus: typo fix in [[done]] docs

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Miobus/io_uring/handle.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iobus/io_uring/handle.ha b/iobus/io_uring/handle.ha @@ -21,7 +21,7 @@ export fn handleof(res: result) *handle = { }; }; -// Discards states associated with an [[result]]. +// Discards state associated with an [[result]]. export fn done(bus: *bus, res: result) void = { const handle = handleof(res); free(handle.callbacks);