summaryrefslogtreecommitdiff
path: root/yjit.rb
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2021-03-25 13:42:43 -0700
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:32 -0400
commit681e76c6bca0ddc6db3cd4d332720e3b411e23d2 (patch)
tree83b842c90ab81bfd5904ec61519c2aa4d8f52c7c /yjit.rb
parent4faaa8e5dc28f31f71f3ed145e834b94cd9f84d5 (diff)
Fix case
Diffstat (limited to 'yjit.rb')
-rw-r--r--yjit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit.rb b/yjit.rb
index 1272e1747b..b513e1b0dc 100644
--- a/yjit.rb
+++ b/yjit.rb
@@ -60,7 +60,7 @@ module YJIT
$stderr.puts("***YJIT: Printing runtime counters from yjit.rb***")
- $stderr.puts "Number of Bindings Allocated: %d\n" % counters[:binding_allocation_count]
+ $stderr.puts "Number of bindings allocated: %d\n" % counters[:binding_allocation_count]
$stderr.puts "Number of locals modified through binding: %d\n" % counters[:local_variable_set_count]
print_counters(counters, prefix: 'oswb_', prompt: 'opt_send_without_block exit reasons: ')