aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml')
-rw-r--r--lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml b/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml
index d141098ecd..5b600e5975 100644
--- a/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml
+++ b/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml
@@ -1,15 +1,15 @@
-<% unless klass.includes.empty? then %>
+<%- unless klass.includes.empty? then %>
<div id="includes-section" class="nav-section">
<h3>Included Modules</h3>
<ul class="link-list">
- <% klass.each_include do |inc| %>
- <% unless String === inc.module then %>
+ <%- klass.each_include do |inc| -%>
+ <%- unless String === inc.module then -%>
<li><a class="include" href="<%= klass.aref_to inc.module.path %>"><%= inc.module.full_name %></a>
- <% else %>
+ <%- else -%>
<li><span class="include"><%= inc.name %></span>
- <% end %>
- <% end %>
+ <%- end -%>
+ <%- end -%>
</ul>
</div>
-<% end %>
+<%- end -%>