diff --git a/Ast/src/Parser.cpp b/Ast/src/Parser.cpp index 8f10466b..bfe52ddc 100644 --- a/Ast/src/Parser.cpp +++ b/Ast/src/Parser.cpp @@ -836,7 +836,7 @@ AstStat* Parser::parseLocal(const AstArray& attributes) { if (FFlag::LuauAttributeSyntax && attributes.size != 0) { - return reportStatError(lexer.current().location, {}, {}, "Expected 'function' after local declaration with attribute, but got %s intead", + return reportStatError(lexer.current().location, {}, {}, "Expected 'function' after local declaration with attribute, but got %s instead", lexer.current().toString().c_str()); } @@ -981,7 +981,7 @@ AstStat* Parser::parseDeclaration(const Location& start, const AstArray