gojay

high performance JSON encoder/decoder with stream API for Golang
git clone git://git.lair.cx/gojay
Log | Files | Refs | README | LICENSE

commit 66f6440df56f8125384dca802568899dae409cf7
parent 86e4b630f45da3bb0aa8ff9efa4b73ba416a5da8
Author: francoispqt <francois@parquet.ninja>
Date:   Sun, 29 Apr 2018 00:26:35 +0800

update README

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -318,7 +318,7 @@ func (u *user) IsNil() bool { func main() { u := &user{1, "gojay", "gojay@email.com"} - b, _ := gojay.MarshalObject(user) + b, _ := gojay.MarshalObject(u) fmt.Println(string(b)) // {"id":1,"name":"gojay","email":"gojay@email.com"} } ```