Did not need the trailing ";".

This commit is contained in:
Kevin Wolf 2015-08-28 15:22:55 -05:00
parent 52a1f6e653
commit b2ec36de09

View file

@ -18,12 +18,12 @@
<%- if value.is_a?(Hash) -%>
<%- value.sort_by {|k,v| k}.each do |subkey,subvalue| -%>
<%- Array(subvalue).each do |asubvalue| -%>
<%= key %> <%= subkey %> <%= asubvalue %>;
<%= key %> <%= subkey %> <%= asubvalue %>
<%- end -%>
<%- end -%>
<%- else -%>
<%- Array(value).each do |asubvalue| -%>
<%= key %> <%= asubvalue %>;
<%= key %> <%= asubvalue %>
<%- end -%>
<%- end -%>
<%- end -%>