diff options
Diffstat (limited to 'include/modules/sql.h')
| -rw-r--r-- | include/modules/sql.h | 4 |
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; }; |
