[前][次][番号順一覧][スレッド一覧]

ruby-changes:68879

From: Aaron <ko1@a...>
Date: Thu, 21 Oct 2021 08:15:01 +0900 (JST)
Subject: [ruby-changes:68879] 681e76c6bc (master): Fix case

https://git.ruby-lang.org/ruby.git/commit/?id=681e76c6bc

From 681e76c6bca0ddc6db3cd4d332720e3b411e23d2 Mon Sep 17 00:00:00 2001
From: Aaron Patterson <tenderlove@r...>
Date: Thu, 25 Mar 2021 13:42:43 -0700
Subject: Fix case

---
 yjit.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/yjit.rb b/yjit.rb
index 1272e1747b..b513e1b0dc 100644
--- a/yjit.rb
+++ b/yjit.rb
@@ -60,7 +60,7 @@ module YJIT https://github.com/ruby/ruby/blob/trunk/yjit.rb#L60
 
       $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: ')
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]