From 54359fbefdd444a41b9a6c37f1bff722d2d79b8a Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Tue, 24 Nov 2020 12:03:57 -0500 Subject: [PATCH] Fix a comment --- src/DBConnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DBConnection.cpp b/src/DBConnection.cpp index acc7f3897..2e41f4113 100644 --- a/src/DBConnection.cpp +++ b/src/DBConnection.cpp @@ -332,7 +332,7 @@ void DBConnection::CheckpointThread() sqlite3_wal_checkpoint_v2( db, nullptr, SQLITE_CHECKPOINT_PASSIVE, nullptr, nullptr); } - // Contentions for an exclusive lock on the databse are possible, + // Contentions for an exclusive lock on the database are possible, // even while the main thread is merely drawing the tracks, which // may perform reads while (rc == SQLITE_BUSY && (std::this_thread::sleep_for(1ms), true));