hare

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

commit 033bcbf87b730a152ad6d672835b0e25a408bde7
parent 7a5c0a765fa63e95e62edc58fdc644cb5037189e
Author: Nihal Jere <nihal@nihaljere.xyz>
Date:   Wed, 27 Apr 2022 15:47:08 -0500

fs: fix typo

Signed-off-by: Nihal Jere <nihal@nihaljere.xyz>

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

diff --git a/fs/fs.ha b/fs/fs.ha @@ -292,7 +292,7 @@ export fn symlink(fs: *fs, target: str, path: str) (void | error) = { }; }; -// Returns the next directory entry from an interator, or void if none remain. +// Returns the next directory entry from an iterator, or void if none remain. // It is a programming error to call this again after it has returned void. The // file stat returned may only have the type bits set on the file mode; callers // should call [[stat]] to obtain the detailed file mode.