From dfdd2dccd7185853bb5ec42138991eb8b953e63c Mon Sep 17 00:00:00 2001 From: tinycolds Date: Wed, 30 Oct 2024 22:34:13 +0800 Subject: [PATCH] fix: fuzzy comment in UpdateQuery --- query_update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query_update.go b/query_update.go index e56ba20d1..ade369cbc 100644 --- a/query_update.go +++ b/query_update.go @@ -53,7 +53,7 @@ func (q *UpdateQuery) Err(err error) *UpdateQuery { return q } -// Apply calls the fn passing the SelectQuery as an argument. +// Apply calls the fn passing the UpdateQuery as an argument. func (q *UpdateQuery) Apply(fn func(*UpdateQuery) *UpdateQuery) *UpdateQuery { if fn != nil { return fn(q)