hare

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

commit 6f4cbf33e55785d9b282f5f6910e8dff9251ba98
parent e9cc87dbebc32955092e2481cf4bb36091737c8d
Author: Christopher M. Riedl <cmr@bluescreens.de>
Date:   Tue, 22 Feb 2022 09:30:14 -0600

io: Fix minor grammar mistake in docs

Use indefinite article 'a' before words starting with a consonant
"sound".

Signed-off-by: Christopher M. Riedl <cmr@bluescreens.de>

Diffstat:
Mio/+freebsd/file.ha | 6+++---
Mio/+linux/file.ha | 6+++---
2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/io/+freebsd/file.ha b/io/+freebsd/file.ha @@ -6,9 +6,9 @@ use rt; use strings; // This is an opaque type which encloses an OS-level file handle resource. It -// can be used as an [[stream]] in most situations, but there are some APIs -// which require an [[file]] with some OS-level handle backing it - this type is -// used for such APIs. +// can be used as a [[stream]] in most situations, but there are some APIs which +// require a [[file]] with some OS-level handle backing it - this type is used +// for such APIs. // // On FreeBSD, [[io::file]] is a file descriptor. export type file = int; diff --git a/io/+linux/file.ha b/io/+linux/file.ha @@ -7,9 +7,9 @@ use rt; use strings; // This is an opaque type which encloses an OS-level file handle resource. It -// can be used as an [[stream]] in most situations, but there are some APIs -// which require an [[file]] with some OS-level handle backing it - this type is -// used for such APIs. +// can be used as a [[stream]] in most situations, but there are some APIs which +// require a [[file]] with some OS-level handle backing it - this type is used +// for such APIs. // // On Linux, [[io::file]] is a file descriptor. export type file = int;