Missing package alias

This commit is contained in:
Josh Baker 2016-12-16 09:22:41 -07:00 committed by GitHub
parent b0e589ad0b
commit e3f249f4fd
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ Returning `false` from an iterator will stop iteration.
```go ```go
result := gjson.Get(json, "programmers") result := gjson.Get(json, "programmers")
result.ForEach(func(key, value Result) bool{ result.ForEach(func(key, value gjson.Result) bool{
println(value.String()) println(value.String())
return true // keep iterating return true // keep iterating
}) })