aboutsummaryrefslogtreecommitdiffstats
path: root/include/modules/sql.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-08 18:09:59 +0000
committerGravatar Sadie Powell2026-03-08 18:09:59 +0000
commitf013eec2f295f88a0c5fad75785fd77fa4dfc45a (patch)
treec1486059fa1d35a2b7a2b2647657f898c67875c5 /include/modules/sql.h
parentMerge branch 'insp4' into master. (diff)
downloadinspircd++-f013eec2f295f88a0c5fad75785fd77fa4dfc45a.tar.gz
inspircd++-f013eec2f295f88a0c5fad75785fd77fa4dfc45a.tar.bz2
inspircd++-f013eec2f295f88a0c5fad75785fd77fa4dfc45a.zip
Fix various minor Doxygen issues.
Diffstat (limited to 'include/modules/sql.h')
-rw-r--r--include/modules/sql.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/sql.h b/include/modules/sql.h
index 078d5e617..be2cf0005 100644
--- a/include/modules/sql.h
+++ b/include/modules/sql.h
@@ -79,7 +79,7 @@ public:
* query which will not return rows, this will return the number of
* affected rows. In this case you SHOULD NEVER access any of the result
* set rows, as there aren't any!
- * @returns Number of rows in the result set.
+ * @return Number of rows in the result set.
*/
virtual int Rows() = 0;
@@ -99,7 +99,7 @@ public:
*
* @param column The column name.
* @param index The place to store the column index if it exists.
- * @returns If the column exists then true; otherwise, false.
+ * @return If the column exists then true; otherwise, false.
*/
virtual bool HasColumn(const std::string& column, size_t& index) = 0;
};