From c160e565ba86b79b0eafc2dd5fb70ca142ada6ef Mon Sep 17 00:00:00 2001 From: Adam Scarr Date: Fri, 11 Aug 2017 00:10:58 +1000 Subject: Fix unexported Unmarshal --- json/profile/json.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'json/profile/json.go') diff --git a/json/profile/json.go b/json/profile/json.go index e6ae771..b7d9733 100644 --- a/json/profile/json.go +++ b/json/profile/json.go @@ -48,7 +48,7 @@ func main() { } for i := 0; i < max; i++ { - _, err := json.unmarshal(benchmarkString) + _, err := json.Unmarshal(benchmarkString) if err != nil { panic(err) } -- cgit v1.2.3