From 9944282cf6fca2fc6d9c136d49d74dece35900a9 Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Wed, 29 Mar 2017 08:18:26 -0700 Subject: [PATCH] updated comments --- gjson.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gjson.go b/gjson.go index 69be577..a6853e2 100644 --- a/gjson.go +++ b/gjson.go @@ -4,10 +4,6 @@ package gjson import ( "reflect" "strconv" - - // It's totally safe to use this package, but in case your - // project or organization restricts the use of 'unsafe', - // there's the "github.com/tidwall/gjson-safe" package. "unsafe" "github.com/tidwall/match" @@ -1761,7 +1757,7 @@ next_key: } if i < len(paths[j]) { if paths[j][i] == '.' { - // matched, but there still more keys in the path + // matched, but there are still more keys in path goto match_not_atend } }