From 4996b56b173dd7d98c4b75242ef706df39f1b71c Mon Sep 17 00:00:00 2001 From: Kalrnlo <62822174+kalrnlo@users.noreply.github.com> Date: Sat, 13 Jul 2024 18:05:13 -0400 Subject: [PATCH] Update Parser.cpp --- Ast/src/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ast/src/Parser.cpp b/Ast/src/Parser.cpp index 87af53cb..8f10466b 100644 --- a/Ast/src/Parser.cpp +++ b/Ast/src/Parser.cpp @@ -797,7 +797,7 @@ AstStat* Parser::parseAttributeStat() } default: return reportStatError(lexer.current().location, {}, {}, - "Expected 'function', 'local function', 'declare function' or a function type declaration after attribute, but got %s intead", + "Expected 'function', 'local function', 'declare function' or a function type declaration after attribute, but got %s instead", lexer.current().toString().c_str()); } }