one extra space to accomodate symbolic indentifiers etc.;
authorwenzelm
Sun, 30 May 2010 21:59:15 +0200
changeset 37199 48a4414eb846
parent 37198 3af985b10550
child 37200 0f3edc64356a
one extra space to accomodate symbolic indentifiers etc.;
src/Pure/PIDE/state.scala
--- a/src/Pure/PIDE/state.scala	Sun May 30 21:34:19 2010 +0200
+++ b/src/Pure/PIDE/state.scala	Sun May 30 21:59:15 2010 +0200
@@ -56,7 +56,7 @@
     types.find(t => t.start <= pos && pos < t.stop) match {
       case Some(t) =>
         t.info match {
-          case Command.TypeInfo(ty) => Some(command.source(t.start, t.stop) + ": " + ty)
+          case Command.TypeInfo(ty) => Some(command.source(t.start, t.stop) + " : " + ty)
           case _ => None
         }
       case None => None