aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_opt_preupdate_omit.go
diff options
context:
space:
mode:
authorCorey Butler <corey@coreybutler.com>2022-04-22 21:40:39 -0500
committermattn <mattn.jp@gmail.com>2022-04-23 14:23:00 +0900
commitbedc2985efda510946f102c1e2a5595be070a2b7 (patch)
treebb2e826edac286c8dff0bf50e112666dcf336b9b /sqlite3_opt_preupdate_omit.go
parentUpdate sqlite3_opt_preupdate_hook.go (diff)
downloadgolite-bedc2985efda510946f102c1e2a5595be070a2b7.tar.gz
golite-bedc2985efda510946f102c1e2a5595be070a2b7.tar.xz
Update sqlite3_opt_preupdate_omit.go
Diffstat (limited to 'sqlite3_opt_preupdate_omit.go')
-rw-r--r--sqlite3_opt_preupdate_omit.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3_opt_preupdate_omit.go b/sqlite3_opt_preupdate_omit.go
index 8df453d..c510a15 100644
--- a/sqlite3_opt_preupdate_omit.go
+++ b/sqlite3_opt_preupdate_omit.go
@@ -13,7 +13,7 @@ package sqlite3
// The callback is passed a SQLitePreUpdateData struct with the data for
// the update, as well as methods for fetching copies of impacted data.
//
-// If there is an existing update hook for this connection, it will be
+// If there is an existing preupdate hook for this connection, it will be
// removed. If callback is nil the existing hook (if any) will be removed
// without creating a new one.
func (c *SQLiteConn) RegisterPreUpdateHook(callback func(SQLitePreUpdateData)) {