summaryrefslogtreecommitdiff
path: root/src/errormsg.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/errormsg.sml')
-rw-r--r--src/errormsg.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errormsg.sml b/src/errormsg.sml
index e816b9a2..f402c5aa 100644
--- a/src/errormsg.sml
+++ b/src/errormsg.sml
@@ -95,7 +95,7 @@ fun error s = (TextIO.output (TextIO.stdErr, s);
TextIO.output1 (TextIO.stdErr, #"\n");
errors := true)
fun errorAt span s = (TextIO.output (TextIO.stdErr, spanToString span);
- TextIO.output1 (TextIO.stdErr, #" ");
+ TextIO.output (TextIO.stdErr, ": ");
error s)
fun errorAt' span s = errorAt (spanOf span) s