summaryrefslogtreecommitdiff
path: root/yjit.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2024-02-13 00:48:10 +0900
committerGitHub <noreply@github.com>2024-02-12 10:48:10 -0500
commit739eec0456e50c6b83ff28d5887310102f5f1f2c (patch)
tree0b9c86ed8ae2fdf65e173f0c064ebd83092c5301 /yjit.rb
parent190a55d27f82eff05ae5bfcac0cb2603ab75791a (diff)
[DOC] `:stopdoc:` directive must be on its own line (#9916)
Diffstat (limited to 'yjit.rb')
-rw-r--r--yjit.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/yjit.rb b/yjit.rb
index 18b00c0765..8ceb2b23cc 100644
--- a/yjit.rb
+++ b/yjit.rb
@@ -234,7 +234,8 @@ module RubyVM::YJIT
at_exit { print_and_dump_stats }
end
- class << self # :stopdoc:
+ class << self
+ # :stopdoc:
private
# Print stats and dump exit locations
@@ -487,5 +488,7 @@ module RubyVM::YJIT
formatted_pct = "%4.1f%%" % percentage
"#{padded_count} (#{formatted_pct})"
end
+
+ # :startdoc:
end
end