hare

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

commit 9c55fecaae9029d67127d9e2fdd13e5b365e00dc
parent 46a08d04eff269a05ad1b19718952ed542a0e91f
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 22 Dec 2021 14:40:17 +0100

io: fix typo in docs

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

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

diff --git a/io/README b/io/README @@ -11,7 +11,7 @@ one of its subtypes. The [[io::file]] type provides access to an object, usually a file descriptor, which is provided by the host operating system. It represents objects such as a -file on disk, an open newtork connection, and so on. The use of [[io::file]] is +file on disk, an open network connection, and so on. The use of [[io::file]] is generally required when working with host I/O, such as for modules like [[iobus]] or [[unix::poll]].