From 6f3d094ebaea5ad7e2da4d024e7a3eaf4f261517 Mon Sep 17 00:00:00 2001 From: linden-in-China <143487690+linden-in-China@users.noreply.github.com> Date: Wed, 3 Apr 2024 22:15:21 +0800 Subject: [PATCH] opton to option (#4035) --- core/stores/builder/builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/stores/builder/builder.go b/core/stores/builder/builder.go index a797de23..8dac7880 100644 --- a/core/stores/builder/builder.go +++ b/core/stores/builder/builder.go @@ -41,7 +41,7 @@ func RawFieldNames(in any, postgreSql ...bool) []string { out = append(out, fmt.Sprintf("`%s`", fi.Name)) } default: - // get tag name with the tag opton, e.g.: + // get tag name with the tag option, e.g.: // `db:"id"` // `db:"id,type=char,length=16"` // `db:",type=char,length=16"`