From 617caec145830f154dcdaffd3e6aa51fd686f01e Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Mon, 8 May 2017 21:47:28 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9c009cd..86f6853 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@

get a json value quickly

GJSON is a Go package that provides a [fast](#performance) and [simple](#get-a-value) way to get values from a json document. -It has features such as [one line retrieval](#get-a-value), [dot notation paths](#path-syntax), [iteration](#iterate-through-an-object-or-array). It can also [unmarshal](#unmarshalling) 2 to 3 times faster than the standard Go `encoding/json` unmarshaller. +It has features such as [one line retrieval](#get-a-value), [dot notation paths](#path-syntax), [iteration](#iterate-through-an-object-or-array). Getting Started =============== @@ -236,7 +236,7 @@ if gjson.Get(json, "name.last").Exists(){ ## Unmarshalling There's a `gjson.Unmarshal` function which loads json data into a value. -It's a drop in replacement for `json.Unmarshal` and you can typically +It's a general replacement for `json.Unmarshal` and you can typically see a 2-3x boost in performance without the need for external generators. This function works almost identically to `json.Unmarshal` except that