Fix 'does not validate' wording in readme

This commit is contained in:
Kenny Grant 2016-08-11 22:05:25 +01:00 committed by GitHub
parent 9a63765fe5
commit af28028c01
1 changed files with 1 additions and 1 deletions

View File

@ -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