Skip to content
Snippets Groups Projects
Unverified Commit 72682973 authored by Daniel Nelson's avatar Daniel Nelson
Browse files

Fix typo in error message

parent a411306f
No related branches found
No related tags found
No related merge requests found
...@@ -416,7 +416,7 @@ func scanFields(buf []byte, i int) (int, []byte, error) { ...@@ -416,7 +416,7 @@ func scanFields(buf []byte, i int) (int, []byte, error) {
} }
if quotes != 0 && quotes != 2 { 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" // check that all field sections had key and values (e.g. prevent "a=1,b"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment