From 739eec0456e50c6b83ff28d5887310102f5f1f2c Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 13 Feb 2024 00:48:10 +0900 Subject: [PATCH] [DOC] `:stopdoc:` directive must be on its own line (#9916) --- yjit.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/yjit.rb b/yjit.rb index 18b00c07650c84..8ceb2b23cc6813 100644 --- a/yjit.rb +++ b/yjit.rb @@ -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 @@ -487,5 +488,7 @@ def format_number_pct(pad, number, total) formatted_pct = "%4.1f%%" % percentage "#{padded_count} (#{formatted_pct})" end + + # :startdoc: end end