Skip to content

Commit

Permalink
Single instead of double quotes
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tjschuck committed Jan 20, 2015
1 parent d4ec25a commit 2a68b47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionview/lib/action_view/helpers/sanitize_helper.rb
Expand Up @@ -54,7 +54,7 @@ module SanitizeHelper
# end
#
# def scrub_attribute?(name)
# name == "style"
# name == 'style'
# end
# end
#
Expand All @@ -66,7 +66,7 @@ module SanitizeHelper
# Providing a custom Loofah::Scrubber:
#
# scrubber = Loofah::Scrubber.new do |node|
# node.remove if node.name == "script"
# node.remove if node.name == 'script'
# end
#
# <%= sanitize @comment.body, scrubber: scrubber %>
Expand Down

0 comments on commit 2a68b47

Please sign in to comment.