hare

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

commit ff57b84b1c4d7737d9ae40f2f7d85c446999a251
parent 37b047234afcc8f9a7d9372f4cba4744c69474c7
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu, 31 Aug 2023 02:11:51 -0400

strings: fix typo

Signed-off-by: Sebastian <sebastian@sebsite.pw>

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

diff --git a/strings/iter.ha b/strings/iter.ha @@ -69,7 +69,7 @@ export fn iterstr(iter: *iterator) str = { return fromutf8(iter.dec.src[iter.dec.offs..])!; }; -// Return a substring from the position of the first operator to the position of +// Return a substring from the position of the first iterator to the position of // the second iterator. The iterators must originate from the same string and // the position of the second iterator must not be before the position of the // first one.