templates/default/module/html/attribute_details.erb in yard-0.8.1 vs templates/default/module/html/attribute_details.erb in yard-0.8.2
- old
+ new
@@ -1,11 +1,10 @@
<% scopes(attr_listing) do |list, scope| %>
<div id="<%= scope %>_attr_details" class="attr_details">
<h2><%= scope.to_s.capitalize %> Attribute Details</h2>
<% list.each_with_index do |meth, i| %>
<% rw = meth.attr_info %>
- <span id="<%= anchor_for(rw[:write]) %>"></span>
- <span id="<%= anchor_for(rw[:read]) %>"></span>
+ <span id="<%= anchor_for(rw[meth.reader? ? :write : :read]) %>"></span>
<%= yieldall :object => meth, :owner => object, :index => i %>
<% end %>
</div>
<% end %>