diff options
author | Adam Scarr <adam@vektah.net> | 2017-08-11 00:10:58 +1000 |
---|---|---|
committer | Adam Scarr <adam@vektah.net> | 2017-08-11 00:10:58 +1000 |
commit | c160e565ba86b79b0eafc2dd5fb70ca142ada6ef (patch) | |
tree | b9198fe8af2fa3587e8593898e6a06cb585736bc /json/profile | |
parent | 60dd11deeec8254da45f9f5b7d24dedef27c4f53 (diff) |
Fix unexported Unmarshal
Diffstat (limited to 'json/profile')
-rw-r--r-- | json/profile/json.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) } |