diff --git a/notes-en/go-json.md b/notes-en/go-json.md
index 038289d..d2928af 100644
--- a/notes-en/go-json.md
+++ b/notes-en/go-json.md
@@ -2,11 +2,11 @@
## Go standard library
-In Go creating of the JSON quite simple, just pass any data in `json.Marshal`, and you get the bytes with JSON. But parsing of JSON is painful, especially when you want only one field that located very deep in the source JSON. You have to create all maps and structs for all places where located fields that you need. See full example on [Go by Example](https://gobyexample.com/json).
+In Go creating of the JSON quite simple, just pass any data in `json.Marshal`, and you get the bytes with JSON. But parsing of JSON is painful, especially when you want only one field that located deep in the source JSON. You have to create all maps and structs for all places where located fields that you need. See full example on [Go by Example](https://gobyexample.com/json).
## Make it better
-+ [gjson](https://github.com/tidwall/gjson) -- allows you to get any data from JSON very simple, without difficult conversions and type-casting. For example, how you can get `lastName` from all objects in the `programmers` field: `gjson.Get(json, "programmers.#.lastName").Array()`. Beautiful!
++ [gjson](https://github.com/tidwall/gjson) -- allows you to get any data from JSON without difficult conversions and type-casting. For example, how you can get `lastName` from all objects in the `programmers` field: `gjson.Get(json, "programmers.#.lastName").Array()`. Beautiful!
+ [sjson](https://github.com/tidwall/sjson) -- same thing for setting up values in the JSON data: `sjson.Set(json, "name.last", "Anderson")`.
## Command line
@@ -30,7 +30,7 @@ $ go run tmp.go | jq
}
```
-However, `jq` fails if the input contains non-JSON lines. I don't know how to fix it. I've found [isuue](https://github.com/stedolan/jq/issues/682) where authors recommend to use `--seq` key for it, but it doesn't work for me. So, in this case, you can use [bat](https://github.com/sharkdp/bat) -- a clone of [cat](https://bit.ly/2NMm67N) with syntax highlighting, lines numbering, pagination and git support.
+However, `jq` fails if the input contains non-JSON lines. I don't know how to fix it. I've found [isuue](https://github.com/stedolan/jq/issues/682) where authors recommend to use `--seq` key for it, but it doesn't work for me. In this case, you can use [bat](https://github.com/sharkdp/bat) -- a clone of [cat](https://bit.ly/2NMm67N) with syntax highlighting, lines numbering, pagination and git support.
```json
go run tmp.go | bat -l jsonnet