summaryrefslogtreecommitdiff
path: root/vendor/codeberg.org/gruf/go-kv/field.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/codeberg.org/gruf/go-kv/field.go')
-rw-r--r--vendor/codeberg.org/gruf/go-kv/field.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/codeberg.org/gruf/go-kv/field.go b/vendor/codeberg.org/gruf/go-kv/field.go
index 7ff6f1ca3..86a53b173 100644
--- a/vendor/codeberg.org/gruf/go-kv/field.go
+++ b/vendor/codeberg.org/gruf/go-kv/field.go
@@ -75,7 +75,7 @@ type Field struct {
// Key returns the formatted key string of this Field.
func (f Field) Key() string {
buf := byteutil.Buffer{B: make([]byte, 0, bufsize/2)}
- appendQuoteKey(&buf, f.K)
+ AppendQuoteKey(&buf, f.K)
return buf.String()
}