summaryrefslogtreecommitdiff
path: root/vendor/github.com/ncruces/go-sqlite3/pointer.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/ncruces/go-sqlite3/pointer.go')
-rw-r--r--vendor/github.com/ncruces/go-sqlite3/pointer.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/github.com/ncruces/go-sqlite3/pointer.go b/vendor/github.com/ncruces/go-sqlite3/pointer.go
index 611c1528c..0e2418b99 100644
--- a/vendor/github.com/ncruces/go-sqlite3/pointer.go
+++ b/vendor/github.com/ncruces/go-sqlite3/pointer.go
@@ -4,7 +4,8 @@ import "github.com/ncruces/go-sqlite3/internal/util"
// Pointer returns a pointer to a value that can be used as an argument to
// [database/sql.DB.Exec] and similar methods.
-// Pointer should NOT be used with [BindPointer] or [ResultPointer].
+// Pointer should NOT be used with [Stmt.BindPointer],
+// [Value.Pointer], or [Context.ResultPointer].
//
// https://sqlite.org/bindptr.html
func Pointer[T any](value T) any {