Merge pull request #1 from kennygrant/master

Fix 'does not validate' wording in readme
This commit is contained in:
Josh Baker 2016-08-11 14:09:48 -07:00 committed by GitHub
commit d0d9241c76
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