fixed typo in 'break' and 'continue' err. msg

This commit is contained in:
CPunch 2020-12-24 13:55:27 -06:00
parent 42eec149f6
commit db8ed21746
1 changed files with 2 additions and 2 deletions

View File

@ -1267,7 +1267,7 @@ static void forLoop(CParseState *pstate) {
static void breakStatement(CParseState *pstate) {
if (pstate->compiler->loop.scope == -1) {
error(pstate, "'break' cannot be used inside of a loop body!");
error(pstate, "'break' cannot be used outside of a loop body!");
return;
}
@ -1283,7 +1283,7 @@ static void breakStatement(CParseState *pstate) {
static void continueStatement(CParseState *pstate) {
if (pstate->compiler->loop.scope == -1) {
error(pstate, "'continue' cannot be used inside of a loop body!");
error(pstate, "'continue' cannot be used outside of a loop body!");
return;
}