fix wording

This commit is contained in:
bielow 2022-11-21 22:35:58 +01:00
parent 967c03aea9
commit ecc89c1f35

View File

@ -38,7 +38,7 @@ enum class TransactionBehavior {
* or if it fails, all the changes are rolled back to the initial state.
*
* Resource Acquisition Is Initialization (RAII) means that the Transaction
* begins in the constructor and is rollbacked in the destructor, so that there is
* begins in the constructor and is rolled back in the destructor (unless comitted before), so that there is
* no need to worry about memory management or the validity of the underlying SQLite Connection.
*
* This method also offers big performances improvements compared to individually executed statements.