From 8509d0d82fe6620313896dc6fd1e954e374104fc Mon Sep 17 00:00:00 2001 From: bielow Date: Mon, 21 Nov 2022 22:35:15 +0100 Subject: [PATCH] fix typo --- include/SQLiteCpp/Savepoint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SQLiteCpp/Savepoint.h b/include/SQLiteCpp/Savepoint.h index 23c067e..9c27505 100644 --- a/include/SQLiteCpp/Savepoint.h +++ b/include/SQLiteCpp/Savepoint.h @@ -23,7 +23,7 @@ class Database; * @brief RAII encapsulation of a SQLite Savepoint. * * A Savepoint is a way to group multiple SQL statements into an atomic - * secureced operation; either it succeeds, with all the changes commited to the + * secure operation; either it succeeds, with all the changes committed to the * database file, or if it fails, all the changes are rolled back to the initial * state at the start of the savepoint. * @@ -39,7 +39,7 @@ class Database; * savepoint to be rolled back. * * 3) This savepoint is not saved to the database until this and all savepoints - * or transaction in the savepoint stack have been released or commited. + * or transaction in the savepoint stack have been released or committed. * * See also: https://sqlite.org/lang_savepoint.html *