diff options
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) } |