Skip to content

Commit

Permalink
correct spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBetts authored and Jonne Nauha committed Sep 3, 2017
1 parent 2862ccb commit 257d140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion varnish.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func scrapeVarnish(ch chan<- prometheus.Metric) (*bytes.Buffer, error) {
if errExec != nil {
return buf, errExec
}
// The output JSON annoyingly is not stuctured so that we could make a nice map[string]struct for it.
// The output JSON annoyingly is not structured so that we could make a nice map[string]struct for it.
metricsJSON := make(map[string]interface{})
dec := json.NewDecoder(buf)
if err := dec.Decode(&metricsJSON); err != nil {
Expand Down

0 comments on commit 257d140

Please sign in to comment.