Jelajahi Sumber

syntax highlight

Tao Wen 8 tahun lalu
induk
melakukan
5310d4aa9a
1 mengubah file dengan 4 tambahan dan 4 penghapusan
  1. 4 4
      README.md

+ 4 - 4
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)
 ```