From 5310d4aa9afb45b2c0601a993c3c987921e473d5 Mon Sep 17 00:00:00 2001 From: Tao Wen Date: Fri, 2 Jun 2017 11:20:54 +0800 Subject: [PATCH] syntax highlight --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4b254fa..ef5fd89 100644 --- a/README.md +++ b/README.md @@ -8,28 +8,28 @@ jsoniter (json-iterator) is fast and flexible JSON parser available in [Java](ht Replace -``` +```go import "encoding/json" json.Marshal(&data) ``` with -``` +```go import "github.com/json-iterator/go" jsoniter.Marshal(&data) ``` Replace -``` +```go import "encoding/json" json.Unmarshal(input, &data) ``` with -``` +```go import "github.com/json-iterator/go" jsoniter.Unmarshal(input, &data) ```