aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rdoc/markup/to_texinfo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/markup/to_texinfo.rb')
-rw-r--r--lib/rdoc/markup/to_texinfo.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rdoc/markup/to_texinfo.rb b/lib/rdoc/markup/to_texinfo.rb
index 533d3e34a0..65a1608c4d 100644
--- a/lib/rdoc/markup/to_texinfo.rb
+++ b/lib/rdoc/markup/to_texinfo.rb
@@ -30,7 +30,7 @@ class RDoc::Markup::ToTexInfo < RDoc::Markup::Formatter
def accept_heading(attributes, text)
heading = ['@majorheading', '@chapheading'][text.head_level - 1] || '@heading'
- @text << "#{heading}{#{format(text)}}"
+ @text << "#{heading} #{format(text)}"
end
def accept_list_start(attributes, text)