From d3414485681fb070bb334a06e5011cd568641e23 Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Wed, 19 Jun 2024 00:39:52 -0300 Subject: [PATCH] loopdb: fix description of BaseDB.ExecTx --- loopdb/sqlite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopdb/sqlite.go b/loopdb/sqlite.go index 37c2eba1..e878e53c 100644 --- a/loopdb/sqlite.go +++ b/loopdb/sqlite.go @@ -194,7 +194,7 @@ func (db *BaseDB) BeginTx(ctx context.Context, } // ExecTx is a wrapper for txBody to abstract the creation and commit of a db -// transaction. The db transaction is embedded in a `*postgres.Queries` that +// transaction. The db transaction is embedded in a `*sqlc.Queries` that // txBody needs to use when executing each one of the queries that need to be // applied atomically. func (db *BaseDB) ExecTx(ctx context.Context, txOptions TxOptions,