summaryrefslogtreecommitdiff
path: root/json/profile/json.go
diff options
context:
space:
mode:
authorAdam Scarr <adam@vektah.net>2017-08-11 00:10:58 +1000
committerAdam Scarr <adam@vektah.net>2017-08-11 00:10:58 +1000
commitc160e565ba86b79b0eafc2dd5fb70ca142ada6ef (patch)
treeb9198fe8af2fa3587e8593898e6a06cb585736bc /json/profile/json.go
parent60dd11deeec8254da45f9f5b7d24dedef27c4f53 (diff)
Fix unexported Unmarshal
Diffstat (limited to 'json/profile/json.go')
-rw-r--r--json/profile/json.go2
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)
}