@@ -256,8 +256,8 @@ class Database
256256 * @brief Set a busy handler that sleeps for a specified amount of time when a table is locked.
257257 *
258258 * This is useful in multithreaded program to handle case where a table is locked for writing by a thread.
259- * Any other thread cannot access the table and will receive a SQLITE_BUSY error:
260- * setting a timeout will wait and retry up to the time specified before returning this SQLITE_BUSY error.
259+ * Any other thread cannot access the table and will receive a SQLITE_BUSY error:
260+ * setting a timeout will wait and retry up to the time specified before returning this SQLITE_BUSY error.
261261 * Reading the value of timeout for current connection can be done with SQL query "PRAGMA busy_timeout;".
262262 * Default busy timeout is 0ms.
263263 *
@@ -322,7 +322,7 @@ class Database
322322 *
323323 * @see exec() to execute, returning number of rows modified
324324 *
325- * @param[in] aQueries one or multiple UTF-8 encoded, semicolon-separate SQL statements
325+ * @param[in] apQueries one or multiple UTF-8 encoded, semicolon-separate SQL statements
326326 *
327327 * @return the sqlite result code.
328328 */
@@ -424,7 +424,7 @@ class Database
424424 /* *
425425 * @brief Get the rowid of the most recent successful INSERT into the database from the current connection.
426426 *
427- * Each entry in an SQLite table always has a unique 64-bit signed integer key called the rowid.
427+ * Each entry in an SQLite table always has a unique 64-bit signed integer key called the rowid.
428428 * If the table has a column of type INTEGER PRIMARY KEY, then it is an alias for the rowid.
429429 *
430430 * @return Rowid of the most recent successful INSERT into the database, or 0 if there was none.
0 commit comments