aboutsummaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/Tokenizer.hxx8
-rw-r--r--src/util/VarSize.hxx2
2 files changed, 4 insertions, 6 deletions
diff --git a/src/util/Tokenizer.hxx b/src/util/Tokenizer.hxx
index dc2646589..3f3448d52 100644
--- a/src/util/Tokenizer.hxx
+++ b/src/util/Tokenizer.hxx
@@ -71,7 +71,7 @@ public:
/**
* Reads the next unquoted word from the input string.
*
- * @param error_r if this function returns nullptr and **input_p!=0, it
+ * @param error if this function returns nullptr and **input_p!=0, it
* provides an #Error object in this argument
* @return a pointer to the null-terminated word, or nullptr
* on error or end of line
@@ -83,9 +83,7 @@ public:
* escapes the following character. This function modifies the input
* string.
*
- * @param input_p the input string; this function returns a pointer to
- * the first non-whitespace character of the following token
- * @param error_r if this function returns nullptr and **input_p!=0, it
+ * @param error if this function returns nullptr and **input_p!=0, it
* provides an #Error object in this argument
* @return a pointer to the null-terminated string, or nullptr on error
* or end of line
@@ -97,7 +95,7 @@ public:
* input. This is a wrapper for NextUnquoted() and
* NextString().
*
- * @param error_r if this function returns nullptr and
+ * @param error if this function returns nullptr and
* **input_p!=0, it provides an #Error object in
* this argument
* @return a pointer to the null-terminated string, or nullptr
diff --git a/src/util/VarSize.hxx b/src/util/VarSize.hxx
index 04f1bf580..4da115fba 100644
--- a/src/util/VarSize.hxx
+++ b/src/util/VarSize.hxx
@@ -42,7 +42,7 @@
* example when you want to store a variable-length string as the last
* attribute without the overhead of a second allocation.
*
- * @param T a struct/class with a variable-size last attribute
+ * @tparam T a struct/class with a variable-size last attribute
* @param declared_tail_size the declared size of the last element in
* #T
* @param real_tail_size the real required size of the last element in