From af28028c0180b26b329b6e5585365a4d89e4b0e5 Mon Sep 17 00:00:00 2001 From: Kenny Grant Date: Thu, 11 Aug 2016 22:05:25 +0100 Subject: [PATCH] Fix 'does not validate' wording in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e4b9b1..2898ecc 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ $ go get -u github.com/tidwall/gjson This will retrieve the library. ## Get a value -Get searches json for the specified path. A path is in dot syntax, such as "name.last" or "age". This function expects that the json is well-formed, and does not validate. Invalid json will not panic, but it may return back unexpected results. When the value is found it's returned immediately. +Get searches json for the specified path. A path is in dot syntax, such as "name.last" or "age". This function expects that the json is well-formed and validates. Invalid json will not panic, but it may return back unexpected results. When the value is found it's returned immediately. ```go package main