summaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-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)
}