From bd04b88439fa0b27754c47e284997597d4d97ce3 Mon Sep 17 00:00:00 2001 From: Kalrnlo <62822174+kalrnlo@users.noreply.github.com> Date: Sat, 13 Jul 2024 18:07:04 -0400 Subject: [PATCH] Update Parser.cpp --- Ast/src/Parser.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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