Skip to content

Commit

Permalink
[DOC] :stopdoc: directive must be on its own line (#9916)
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Feb 12, 2024
1 parent 190a55d commit 739eec0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion yjit.rb
Expand Up @@ -234,7 +234,8 @@ def self.simulate_oom! # :nodoc:
at_exit { print_and_dump_stats }
end

class << self # :stopdoc:
class << self
# :stopdoc:
private

# Print stats and dump exit locations
Expand Down Expand Up @@ -487,5 +488,7 @@ def format_number_pct(pad, number, total)
formatted_pct = "%4.1f%%" % percentage
"#{padded_count} (#{formatted_pct})"
end

# :startdoc:
end
end

0 comments on commit 739eec0

Please sign in to comment.