diff --git a/include/SQLiteCpp/Transaction.h b/include/SQLiteCpp/Transaction.h index 2d353dc..e6d2618 100644 --- a/include/SQLiteCpp/Transaction.h +++ b/include/SQLiteCpp/Transaction.h @@ -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.