diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-03-13 21:14:54 +0900 |
---|---|---|
committer | git <[email protected]> | 2022-03-13 21:15:08 +0900 |
commit | 416c63c118e61287d0f2c7114dbc404a5e27a650 (patch) | |
tree | 8cea930d2aa8a63d6876500f186361eea56ab8dd /lib/rdoc/normal_module.rb | |
parent | 2af8b04eca68a924fd2875e9c5e51240150d02a6 (diff) |
[ruby/rdoc] Refine `pretty_print`
https://github.com/ruby/rdoc/commit/acb91ea74a
Diffstat (limited to 'lib/rdoc/normal_module.rb')
-rw-r--r-- | lib/rdoc/normal_module.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rdoc/normal_module.rb b/lib/rdoc/normal_module.rb index 8f364be41c..edf29f8f1c 100644 --- a/lib/rdoc/normal_module.rb +++ b/lib/rdoc/normal_module.rb @@ -30,7 +30,7 @@ class RDoc::NormalModule < RDoc::ClassModule end def pretty_print q # :nodoc: - q.group 2, "[module #{full_name}: ", "]" do + q.group 2, "[module #{full_name}:", "]" do q.breakable q.text "includes:" q.breakable |