From 864d4e5cdd2ce8bb6512ec9049cab528ffa0e495 Mon Sep 17 00:00:00 2001 From: bitcoin-lightning <153181187+AtomicInnovation321@users.noreply.github.com> Date: Tue, 2 Jan 2024 13:03:38 +0800 Subject: [PATCH] fix typo in sqlite.go --- loopdb/sqlite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopdb/sqlite.go b/loopdb/sqlite.go index 1a744f6..cfbca6a 100644 --- a/loopdb/sqlite.go +++ b/loopdb/sqlite.go @@ -294,7 +294,7 @@ func (b *BaseDB) FixFaultyTimestamps(ctx context.Context) error { } // TxOptions represents a set of options one can use to control what type of -// database transaction is created. Transaction can wither be read or write. +// database transaction is created. Transaction can whether be read or write. type TxOptions interface { // ReadOnly returns true if the transaction should be read only. ReadOnly() bool