Skip to content

Commit

Permalink
Fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnelson committed Nov 13, 2017
1 parent a411306 commit 7268297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metric/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ func scanFields(buf []byte, i int) (int, []byte, error) {
}

if quotes != 0 && quotes != 2 {
return i, buf[start:i], makeError("unescaped/ublanaced quotes", buf, i)
return i, buf[start:i], makeError("unbalanced quotes", buf, i)
}

// check that all field sections had key and values (e.g. prevent "a=1,b"
Expand Down

0 comments on commit 7268297

Please sign in to comment.