aboutsummaryrefslogtreecommitdiffstats
path: root/ccl.go
diff options
context:
space:
mode:
Diffstat (limited to 'ccl.go')
-rw-r--r--ccl.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ccl.go b/ccl.go
index 882ae30..0315541 100644
--- a/ccl.go
+++ b/ccl.go
@@ -447,7 +447,7 @@ func (p *parser) unescape(rawStr []byte) ([]byte, error) {
escaped = append(escaped, b...)
}
if !utf8.Valid(escaped) {
- return nil, p.error("syntax error: string %q is not UTF-8 encoded", escaped)
+ return nil, p.error("string %q is not UTF-8 encoded", escaped)
}
return escaped, nil
}