summaryrefslogtreecommitdiffhomepage
path: root/lib/yard/mruby/templates/helpers/html_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/yard/mruby/templates/helpers/html_helper.rb')
-rw-r--r--lib/yard/mruby/templates/helpers/html_helper.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/yard/mruby/templates/helpers/html_helper.rb b/lib/yard/mruby/templates/helpers/html_helper.rb
index 46b8664..7d1e159 100644
--- a/lib/yard/mruby/templates/helpers/html_helper.rb
+++ b/lib/yard/mruby/templates/helpers/html_helper.rb
@@ -5,11 +5,13 @@ module YARD::MRuby::Templates
def fsignature(func, link = true, show_extras = true)
name = func.name
- title = "<strong>%s</strong>" % [h(name)]
+ prefix = 'void'
+ params = 'void'
+ title = "%s <strong>%s</strong>( %s )" % [h(prefix), h(name), h(params)]
if link
url = url_for(func)
- link_url(url, title, :title => title)
+ link_url(url, title, :title => name)
else
title
end