[DOC] :stopdoc: directive must be on its own line (#9916)

This commit is contained in:
Nobuyoshi Nakada 2024-02-13 00:48:10 +09:00 committed by GitHub
parent 190a55d27f
commit 739eec0456
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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