hare

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

commit 2d5e0c7b62267950a4c0910b42aeae6720f47b09
parent 44a36fef405a2707e73358f16d8f54bd097bbf4e
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun,  2 Jan 2022 20:11:02 +0100

io::file: fix doc error on +freebsd

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

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

diff --git a/io/+freebsd/file.ha b/io/+freebsd/file.ha @@ -7,7 +7,7 @@ use strings; // which require an [[file]] with some OS-level handle backing it - this type is // used for such APIs. // -// On Linux, [[io::file]] is a file descriptor. +// On FreeBSD, [[io::file]] is a file descriptor. export type file = int; // Opens a Unix file descriptor as a file. This is a low-level interface, to