aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates/benchmark.rb
diff options
context:
space:
mode:
Diffstat (limited to 'guides/bug_report_templates/benchmark.rb')
-rw-r--r--guides/bug_report_templates/benchmark.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/bug_report_templates/benchmark.rb b/guides/bug_report_templates/benchmark.rb
index ae51d7027f..54433b34dd 100644
--- a/guides/bug_report_templates/benchmark.rb
+++ b/guides/bug_report_templates/benchmark.rb
@@ -42,8 +42,8 @@ SCENARIOS.each_pair do |name, value|
puts
Benchmark.ips do |x|
- x.report('blank?') { value.blank? }
- x.report('fast_blank?') { value.fast_blank? }
+ x.report("blank?") { value.blank? }
+ x.report("fast_blank?") { value.fast_blank? }
x.compare!
end
end