src/Pure/PIDE/text.scala
changeset 64546 134ae7da2ccf
parent 64370 865b39487b5d
child 64678 914dffe59cc5
--- a/src/Pure/PIDE/text.scala	Sat Dec 10 17:20:39 2016 +0100
+++ b/src/Pure/PIDE/text.scala	Sat Dec 10 17:22:47 2016 +0100
@@ -37,9 +37,9 @@
   {
     // denotation: {start} Un {i. start < i & i < stop}
     if (start > stop)
-      error("Bad range: [" + start.toString + ":" + stop.toString + "]")
+      error("Bad range: [" + start.toString + ".." + stop.toString + "]")
 
-    override def toString: String = "[" + start.toString + ":" + stop.toString + "]"
+    override def toString: String = "[" + start.toString + ".." + stop.toString + "]"
 
     def length: Int = stop - start