lib/performance_analysis: fix `PerfMap::to_s`
authorAlexis Laferrière <alexis.laf@xymus.net>
Mon, 20 Jul 2015 04:17:31 +0000 (00:17 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Mon, 20 Jul 2015 19:37:47 +0000 (15:37 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/performance_analysis.nit

index 3ae01d9..93d525d 100644 (file)
@@ -60,7 +60,7 @@ class PerfMap
                return ts
        end
 
-       redef fun to_s do return "* " + join(": ", "\n* ")
+       redef fun to_s do return "* " + join("\n* ", ": ")
 end
 
 # Statistics on wall clock execution time of a category of events by `name`