Avoid warnings about spaces in method calls.

This commit is contained in:
Tom Hughes 2007-06-10 23:40:35 +00:00
parent 1ea57a3bb1
commit e84c55e860
2 changed files with 7 additions and 7 deletions

View file

@ -28,16 +28,16 @@
<% end %>
<%= render (:partial => 'trace_paging_nav') %>
<%= render :partial => 'trace_paging_nav' %>
<table id="keyvalue" cellpadding="3">
<tr>
<th></th>
<th></th>
</tr>
<%= render (:partial => 'trace', :collection => @traces) unless @traces.nil? %>
<%= render :partial => 'trace', :collection => @traces unless @traces.nil? %>
</table>
<%= render (:partial => 'trace_paging_nav') %>
<%= render :partial => 'trace_paging_nav' %>
<% end %>
<%= render (:partial => 'trace_optionals') %>
<%= render :partial => 'trace_optionals' %>