hare

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

commit e67426d96dee92fe6f2b46a67cd64c0b3b3a2d9f
parent 6d331a37a8c1baf17e7eccb966a9c21ef041b20e
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu, 21 Apr 2022 15:53:22 -0400

hare::parse: grammatical fix for peek doc comment

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

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

diff --git a/hare/parse/parse.ha b/hare/parse/parse.ha @@ -69,7 +69,7 @@ fn try( }; // Looks for a matching ltok from the lexer, unlexes the token, and returns -// it; or void if it was not a ltok. +// it; or void if it was not an ltok. fn peek( lexer: *lex::lexer, want: lex::ltok...