aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--benchmark/driver.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a07f6562a..de6a2cecd4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Mar 9 16:48:45 2016 Koichi Sasada <ko1@atdot.net>
+
+ * benchmark/driver.rb: fix my last commit (syntax error).
+
Wed Mar 9 16:41:44 2016 Koichi Sasada <ko1@atdot.net>
* benchmark/driver.rb: fix output messages.
diff --git a/benchmark/driver.rb b/benchmark/driver.rb
index 38c6e045f1..0b7696eace 100644
--- a/benchmark/driver.rb
+++ b/benchmark/driver.rb
@@ -219,7 +219,7 @@ class BenchmarkDriver
if @execs.size > 1
output
output({
- real: "Speedup ratio: compare with the result of `#{@execs[0][1]}' (greater is better)"
+ real: "Speedup ratio: compare with the result of `#{@execs[0][1]}' (greater is better)",
peak: "Memory consuming ratio (peak) with the result of `#{@execs[0][1]}' (greater is better)",
size: "Memory consuming ratio (size) with the result of `#{@execs[0][1]}' (greater is better)",
}[@measure_target])