mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 22:15:32 +00:00
Fix typos
This commit is contained in:
parent
87ae03b5d4
commit
452b522bc3
1 changed files with 4 additions and 4 deletions
|
@ -86,7 +86,7 @@ namespace Compiler
|
||||||
{
|
{
|
||||||
if (mState==PotentialEndState)
|
if (mState==PotentialEndState)
|
||||||
{
|
{
|
||||||
getErrorHandler().warning ("stay string argument (ignoring it)", loc);
|
getErrorHandler().warning ("stray string argument (ignoring it)", loc);
|
||||||
mState = EndState;
|
mState = EndState;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -377,19 +377,19 @@ namespace Compiler
|
||||||
|
|
||||||
case Scanner::K_else:
|
case Scanner::K_else:
|
||||||
|
|
||||||
getErrorHandler().warning ("stay else (ignoring it)", loc);
|
getErrorHandler().warning ("stray else (ignoring it)", loc);
|
||||||
mState = EndState;
|
mState = EndState;
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
case Scanner::K_endif:
|
case Scanner::K_endif:
|
||||||
|
|
||||||
getErrorHandler().warning ("stay endif (ignoring it)", loc);
|
getErrorHandler().warning ("stray endif (ignoring it)", loc);
|
||||||
mState = EndState;
|
mState = EndState;
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
case Scanner::K_begin:
|
case Scanner::K_begin:
|
||||||
|
|
||||||
getErrorHandler().warning ("stay begin (ignoring it)", loc);
|
getErrorHandler().warning ("stray begin (ignoring it)", loc);
|
||||||
mState = EndState;
|
mState = EndState;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue