Skip to content

Commit

Permalink
Update Parser.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing authored Jul 13, 2024
1 parent b6b74b4 commit 4996b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ast/src/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
}
Expand Down

0 comments on commit 4996b56

Please sign in to comment.