summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2010-04-13 22:50:03 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2010-04-13 22:50:03 +0000
commite6d5046baca8b490e2ef93631216fe34e08d6aaa (patch)
treed5108bb30eebf4472ff070a274e909b7041ff9ba /src/parser
parent6cdc7f3211ac5b034192b73b39868a446521f792 (diff)
Doxygen fixes
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/input.h1
-rw-r--r--src/parser/parser_state.h4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/parser/input.h b/src/parser/input.h
index f109036ed..a32416305 100644
--- a/src/parser/input.h
+++ b/src/parser/input.h
@@ -73,6 +73,7 @@ public:
* @param exprManager the ExprManager for creating expressions from the input
* @param lang the input language
* @param filename the input filename
+ * @param useMmap true if the parser should use memory-mapped I/O (default: false)
*/
static Input* newFileInput(ExprManager* exprManager, InputLanguage lang, const std::string& filename, bool useMmap=false);
diff --git a/src/parser/parser_state.h b/src/parser/parser_state.h
index dc188b7d1..3e0771070 100644
--- a/src/parser/parser_state.h
+++ b/src/parser/parser_state.h
@@ -199,7 +199,7 @@ public:
void checkFunction(const std::string& name) throw (ParserException);
/**
- * Check that <code>kind</code> can accept <code>numArgs</codes> arguments.
+ * Check that <code>kind</code> can accept <code>numArgs</code> arguments.
* @param kind the built-in operator to check
* @param numArgs the number of actual arguments
* @throws ParserException if checks are enabled and the operator <code>kind</code> cannot be
@@ -209,7 +209,7 @@ public:
/**
* Returns the type for the variable with the given name.
- * @param name the symbol to lookup
+ * @param var_name the symbol to lookup
* @param type the (namespace) type of the symbol
*/
Type* getType(const std::string& var_name, SymbolType type = SYM_VARIABLE);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback