hare

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

commit 3c5b4260dfa58620dc5997fbeecd922fff76676e
parent 195773cf1c2ab43cb937f8d54208ef5a31b63b2b
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 16 Jan 2023 14:17:14 +0100

io: drop obsolete doc reference

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

Diffstat:
Mio/types.ha | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/io/types.ha b/io/types.ha @@ -3,9 +3,8 @@ // (c) 2021 Ember Sawady <ecs@d2evs.net> use errors; -// Returned by [[readitem]], [[readitems]] and [[readall]] if the I/O handle -// returned [[EOF]] prior to completely reading an item. Stores the amount that -// was succesfully read. +// Returned by [[readall]] if the I/O handle returned [[EOF]] prior to +// completely reading an item. Stores the amount that was succesfully read. export type underread = !size; // Any error which may be returned from an I/O function.