Update Parser.cpp

This commit is contained in:
Kalrnlo 2024-07-13 18:05:13 -04:00 committed by GitHub
parent b6b74b4425
commit 4996b56b17
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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());
}
}