summaryrefslogtreecommitdiffstats
path: root/vhdlparser/ErrorHandler.h
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2019-11-12 04:27:26 (GMT)
committerJosh Soref <jsoref@users.noreply.github.com>2019-11-12 04:27:26 (GMT)
commitc65f1e96056b8d07f63bc2d016138bdd269dbb24 (patch)
tree26a34943bcb93de50aeab5e6c5b635e54c9a4f64 /vhdlparser/ErrorHandler.h
parentdda8cf39908bd5e2022b8ec44112777f43adf2ba (diff)
downloadDoxygen-c65f1e96056b8d07f63bc2d016138bdd269dbb24.zip
Doxygen-c65f1e96056b8d07f63bc2d016138bdd269dbb24.tar.gz
Doxygen-c65f1e96056b8d07f63bc2d016138bdd269dbb24.tar.bz2
spelling: occurs
Diffstat (limited to 'vhdlparser/ErrorHandler.h')
-rw-r--r--vhdlparser/ErrorHandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vhdlparser/ErrorHandler.h b/vhdlparser/ErrorHandler.h
index d5535e8..cd63e9e 100644
--- a/vhdlparser/ErrorHandler.h
+++ b/vhdlparser/ErrorHandler.h
@@ -32,7 +32,7 @@ JJSimpleString addUnicodeEscapes(const JJString& 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, const JJSimpleString& 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());