hare

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

commit 263ea738f5af7f3f933654a0c54895eb77e74c9a
parent c405036e951b50a1800fc31bd00129516bc9ae72
Author: Sebastian <sebastian@sebsite.pw>
Date:   Wed, 12 Jul 2023 21:58:00 -0400

path: fix capitalization of docstring

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

diff --git a/path/iter.ha b/path/iter.ha @@ -73,7 +73,7 @@ fn split_iter(it: *iterator) ([]u8, []u8) = { }; }; -// get the remaining path from an iterator, without advancing the iterator. +// Gets the remaining path from an iterator, without advancing the iterator. export fn iterrem(it: *iterator) str = strings::fromutf8_unsafe(it.cur); @test fn iter() void = {