hare

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

commit 10d09ee6ed4a96c2fc9d07a88bb59cd7790eefff
parent d5380589ed4773ac93a179fd692f7362a51cad49
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sun,  1 May 2022 23:35:52 -0400

io: fix typo in zero doc comment

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mio/zero.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/io/zero.ha b/io/zero.ha @@ -11,7 +11,7 @@ const _zero_vt: vtable = vtable { const _zero: stream = &_zero_vt; -// A [[stream]] which always reads zereos and discards any writes. +// A [[stream]] which always reads zeroes and discards any writes. export const zero: *stream = &_zero; fn zero_read(s: *stream, buf: []u8) (size | EOF | error) = {