summaryrefslogtreecommitdiff
path: root/yjit.rb
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2021-09-14 15:06:46 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:40 -0400
commit0ee8c606626cd3f92a07a4b1ae7ab546e22031ab (patch)
tree680cf857dddbe5dc664c12bed9899d6c786684f7 /yjit.rb
parenta68e61f08904ecc5a8b551a90894475da2f0ae9b (diff)
downloadruby-0ee8c606626cd3f92a07a4b1ae7ab546e22031ab.tar.gz
Add missing percent sign in printout
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 0e118cc87e..520c043068 100644
--- a/yjit.rb
+++ b/yjit.rb
@@ -213,7 +213,7 @@ module YJIT
padded_count = "%10d" % count
percent = 100.0 * count / total_exits
formatted_percent = "%.1f" % percent
- $stderr.puts("#{padded_name}: #{padded_count} (#{formatted_percent})" )
+ $stderr.puts("#{padded_name}: #{padded_count} (#{formatted_percent}%)" )
end
end