From b661f333a32563f378acdc55c01c4c8ab299400b Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Mon, 22 Aug 2016 06:13:09 -0700 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1c84271..a014883 100644 --- a/README.md +++ b/README.md @@ -165,9 +165,9 @@ There's a `Parse(json)` function that will do a simple parse, and `result.Get(pa For example, all of these will return the same result: ```go -Parse(json).Get("name").Get("last") -Get("name").Get("last") -Get("name.last") +gjson.Parse(json).Get("name").Get("last") +gjson.Get("name").Get("last") +gjson.Get("name.last") ``` ## Check for the existence of a value