1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-19 20:22:25 +08:00

fix: fix goline error

This commit is contained in:
dudaodong
2023-01-05 14:55:47 +08:00
parent d8505d1a5f
commit d9c6294775
5 changed files with 47 additions and 14 deletions

View File

@@ -242,7 +242,10 @@ func ExampleEncodeByte() {
func ExampleDecodeByte() {
var obj string
byteData := []byte{6, 12, 0, 3, 97, 98, 99}
DecodeByte(byteData, &obj)
err := DecodeByte(byteData, &obj)
if err != nil {
return
}
fmt.Println(obj)