diff options
author | luz.paz <luzpaz@users.noreply.github.com> | 2018-04-25 17:32:21 (GMT) |
---|---|---|
committer | luz.paz <luzpaz@users.noreply.github.com> | 2018-04-25 17:32:36 (GMT) |
commit | 99a836218ca4e20862d3f816361c4586b45560ee (patch) | |
tree | df0c1f0669598561f12d07da31a104de1ccf59af /vhdlparser/ErrorHandler.h | |
parent | e75de3722b98115f27483aeacb3b2b1dbe7114a3 (diff) | |
download | Doxygen-99a836218ca4e20862d3f816361c4586b45560ee.zip Doxygen-99a836218ca4e20862d3f816361c4586b45560ee.tar.gz Doxygen-99a836218ca4e20862d3f816361c4586b45560ee.tar.bz2 |
Misc. typos
Found via `codespell`
Diffstat (limited to 'vhdlparser/ErrorHandler.h')
-rw-r--r-- | vhdlparser/ErrorHandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhdlparser/ErrorHandler.h b/vhdlparser/ErrorHandler.h index 55286b4..7500a5f 100644 --- a/vhdlparser/ErrorHandler.h +++ b/vhdlparser/ErrorHandler.h @@ -30,7 +30,7 @@ JAVACC_SIMPLE_STRING addUnicodeEscapes(JAVACC_STRING_TYPE str); // Called when the parser cannot continue parsing. // last - the last token successfully parsed. // unexpected - the token at which the error occurs. - // production - the production in which this error occurrs. + // production - the production in which this error occurs. virtual void handleParseError(Token *last, Token *unexpected, JAVACC_SIMPLE_STRING production, VhdlParser *parser) { error_count++; fprintf(stderr, "Encountered: %s at: %d:%d while parsing: %s\n", addUnicodeEscapes(unexpected->image).c_str(), unexpected->beginLine, unexpected->beginColumn, production.c_str()); |