summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-11 02:10:15 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-11 02:10:15 +0200
commit25987f87e61e6fd25445ea15a3a6e149e27b1c91 (patch)
tree784678d07bed54a72b6c1422d87b498dd9d04535
parent8e10d86be150df84e378791551b8809ae195d8ad (diff)
Replace 0xA0 with 0x0A
-rw-r--r--lib/mintage/parser.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mintage/parser.go b/lib/mintage/parser.go
index 76f13e7..364b6e8 100644
--- a/lib/mintage/parser.go
+++ b/lib/mintage/parser.go
@@ -16,7 +16,7 @@ type SyntaxError struct {
}
func (e SyntaxError) Error() string {
- return fmt.Sprintf("%s:%d: syntax error: expected %s but got %s",
+ return fmt.Sprintf("%s:%d: syntax error: expected %s but got %s",
e.file, e.linenr, e.expected, e.got)
}