We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f4215 commit e6f5c81Copy full SHA for e6f5c81
lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml
@@ -3,8 +3,8 @@
3
4
<%-
5
all_classes = group_classes_by_namespace_for_sidebar(@classes)
6
- link = proc do |index_klass, display = index_klass.display?|
7
- if display
+ link = proc do |index_klass|
+ if index_klass.display?
8
-%><code><a href="<%= rel_prefix %>/<%= index_klass.path %>"><%= index_klass.name %></a></code><%-
9
else
10
-%><code><%= index_klass.name %></code><%-
@@ -20,7 +20,7 @@
20
<%- traverse.call(children) -%>
21
</ul></details>
22
<%- elsif index_klass.display? -%>
23
- <li><% link.call(index_klass, true) %>
+ <li><% link.call(index_klass) %>
24
<%- end -%>
25
26
0 commit comments