go: update go to latest (#4188)

* go: update go to latest

* chore: fix lint
This commit is contained in:
Tran Minh Luan
2024-08-23 15:46:59 +07:00
committed by GitHub
parent 7aef607da4
commit 057c0ee063
10 changed files with 34 additions and 37 deletions

View File

@@ -93,6 +93,6 @@ func (ext encodeExtension) DecorateEncoder(typ reflect2.Type, enc jsoniter.ValEn
case reflect.Map:
return ext.DecoratorOfMap(enc)
default:
return ext.EncoderOfError("graphson: unsupported type: " + typ.String())
return ext.EncoderOfError("graphson: unsupported type: %s", typ.String())
}
}