summaryrefslogtreecommitdiff
path: root/json/json.go
diff options
context:
space:
mode:
Diffstat (limited to 'json/json.go')
-rw-r--r--json/json.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/json/json.go b/json/json.go
index 52166f8..0707f0a 100644
--- a/json/json.go
+++ b/json/json.go
@@ -36,6 +36,6 @@ func init() {
_value = Any(_null, _true, _false, _string, _number, _array, _object)
}
-func Unmarshal(input string) (interface{}, error) {
+func unmarshal(input string) (interface{}, error) {
return Run(_value, input, ASCIIWhitespace)
}