From 18aa9e4deffc26ed0c8ad8ee4439f9d9dd2edd4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Wed, 7 Oct 2015 22:26:58 +0200 Subject: [PATCH] Fix a too long comment --- include/SQLiteCpp/Database.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/SQLiteCpp/Database.h b/include/SQLiteCpp/Database.h index ae152a1..71ebc5b 100644 --- a/include/SQLiteCpp/Database.h +++ b/include/SQLiteCpp/Database.h @@ -270,13 +270,17 @@ public: return sqlite3_extended_errcode(mpSQLite); } - /// Return UTF-8 encoded English language explanation of the most recent failed API call (if any). + /// @brief Return UTF-8 encoded English language explanation of the most recent failed API call (if any). inline const char* errmsg() const noexcept // nothrow { return sqlite3_errmsg(mpSQLite); } - /// Return raw pointer to SQLite Database Connection Handle (often needed to mix with other libraries or advance usage). + /** + * @brief Return raw pointer to SQLite Database Connection Handle. + * + * This is often needed to mix this wrapper with other libraries or for advance usage not supported by SQLiteCpp. + */ inline sqlite3* getHandle() const noexcept // nothrow { return mpSQLite;