summaryrefslogtreecommitdiffstats
path: root/vhdlparser/ErrorHandler.h
diff options
context:
space:
mode:
authororbitcowboy <ettl.martin78@gmail.com>2014-12-10 11:04:31 (GMT)
committerorbitcowboy <ettl.martin78@gmail.com>2014-12-10 11:04:31 (GMT)
commit6920d3ec6db21cec32086249a48875cbac957470 (patch)
tree7b1ee20a26f3478e9cc1b866326ffe72cf228e69 /vhdlparser/ErrorHandler.h
parentdc37f6c2a42740e6cbd79d1e6c758c5cbc1f10f7 (diff)
downloadDoxygen-6920d3ec6db21cec32086249a48875cbac957470.zip
Doxygen-6920d3ec6db21cec32086249a48875cbac957470.tar.gz
Doxygen-6920d3ec6db21cec32086249a48875cbac957470.tar.bz2
Fixed typos in comments. No functional changes.
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 8197aea..f5e53e4 100644
--- a/vhdlparser/ErrorHandler.h
+++ b/vhdlparser/ErrorHandler.h
@@ -31,7 +31,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());