Skip to content

Commit

Permalink
no need for string interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
dewski committed Dec 9, 2011
1 parent 7e7f540 commit 2b7f8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/kss/shared/_styleguide_block.erb
Expand Up @@ -16,7 +16,7 @@
<% section.modifiers.each do |modifier| %>
<div class="styleguide-element styleguide-modifier">
<span class="styleguide-modifier-name"><%= modifier.name %></span>
<%= example_html.gsub('$modifier_class', "#{modifier.class_name}").html_safe %>
<%= example_html.gsub('$modifier_class', modifier.class_name).html_safe %>
</div>
<% end %>
</div>

0 comments on commit 2b7f8d4

Please sign in to comment.