diff options
author | 2023-08-21 06:54:30 +0000 | |
---|---|---|
committer | 2023-08-21 06:54:30 +0000 | |
commit | 70d87f0ff0cc3fc6b38e1f111932c7523e9b8223 (patch) | |
tree | e023a32513acb93679f0db6dbe19f22930db305e /vendor/codeberg.org/gruf/go-kv/format/util.go | |
parent | [chore]: Bump github.com/minio/minio-go/v7 from 7.0.61 to 7.0.62 (#2141) (diff) | |
download | gotosocial-70d87f0ff0cc3fc6b38e1f111932c7523e9b8223.tar.xz |
[chore]: Bump codeberg.org/gruf/go-kv from 1.6.3 to 1.6.4 (#2142)
Diffstat (limited to 'vendor/codeberg.org/gruf/go-kv/format/util.go')
-rw-r--r-- | vendor/codeberg.org/gruf/go-kv/format/util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/codeberg.org/gruf/go-kv/format/util.go b/vendor/codeberg.org/gruf/go-kv/format/util.go index f36727679..79cb30981 100644 --- a/vendor/codeberg.org/gruf/go-kv/format/util.go +++ b/vendor/codeberg.org/gruf/go-kv/format/util.go @@ -80,7 +80,7 @@ func Byte2Str(c byte) string { return `\t` case '\v': return `\v` - case '\'': + case '\\': return `\\` default: if c < ' ' { |