hare

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

commit fba484d254c0c2747f98e86fafc501358ff9916d
parent 1ba5510545a5dc11ccc34c3f05d5e8bd014e05a3
Author: Guilherme Puida Moreira <guilherme@puida.xyz>
Date:   Thu, 19 Sep 2024 22:42:51 -0300

hare::parse::type: fix typo

Signed-off-by: Guilherme Puida Moreira <guilherme@puida.xyz>

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

diff --git a/hare/parse/type.ha b/hare/parse/type.ha @@ -134,7 +134,7 @@ fn primitive_type(lexer: *lex::lexer) (ast::_type | error) = { yield builtin_type::NEVER; case => return syntaxerr(lex::mkloc(lexer), - "Unexected {}, was expecting primitive type", + "Unexpected {}, was expecting primitive type", lex::tokstr(tok)); }; return ast::_type {