model: MGenericType::to_s add space between formal types
authorAlexandre Terrasa <alexandre@moz-code.org>
Tue, 4 Dec 2012 01:03:21 +0000 (20:03 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Tue, 4 Dec 2012 01:03:21 +0000 (20:03 -0500)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

src/model/model.nit

index dbaf282..e029faf 100644 (file)
@@ -849,10 +849,10 @@ class MGenericType
        end
 
        # Recursively print the type of the arguments within brackets.
-       # Example: "Map[String,List[Int]]"
+       # Example: "Map[String, List[Int]]"
        redef fun to_s
        do
-               return "{mclass}[{arguments.join(",")}]"
+               return "{mclass}[{arguments.join(", ")}]"
        end
 
        redef var need_anchor: Bool