diff --git a/gjson.go b/gjson.go index d2e11b9..241bd6d 100644 --- a/gjson.go +++ b/gjson.go @@ -583,6 +583,8 @@ func (t Result) Exists() bool { // Number, for JSON numbers // string, for JSON string literals // nil, for JSON null +// map[string]interface{}, for JSON objects +// []interface{}, for JSON arrays // func (t Result) Value() interface{} { if t.Type == String {