summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Boles <dboles@src.gnome.org>2018-12-17 18:28:59 +0000
committerDaniel Boles <dboles@src.gnome.org>2018-12-17 18:32:38 +0000
commitada8afa1fe39951056e40ca89ec5b3e17b62c174 (patch)
tree5800decc06e88ba004adb9988ae7d10cb74573d5
parentb800a1d4c4e392e184e21f37bf2ee2f41d71b434 (diff)
downloadglibmm-ada8afa1fe39951056e40ca89ec5b3e17b62c174.tar.gz
stringutils: Don't use @retval here either
as pointed out by Kjell: https://gitlab.gnome.org/GNOME/gtkmm/merge_requests/9#note_389406
-rw-r--r--glib/glibmm/stringutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/glibmm/stringutils.h b/glib/glibmm/stringutils.h
index e6659e2b..466a9b6e 100644
--- a/glib/glibmm/stringutils.h
+++ b/glib/glibmm/stringutils.h
@@ -82,7 +82,7 @@ double strtod(const std::string& str);
*
* @param str The string to convert to a numeric value.
* @param start_index The index of the first character that should be used in the conversion.
- * @retval end_index The index of the character after the last character used in the conversion.
+ * @param[out] end_index The index of the character after the last character used in the conversion.
* @return The <tt>double</tt> value.
* @throw std::out_of_range Thrown if @a start_index is out of range.
* @throw std::overflow_error Thrown if the correct value would cause overflow.