Single instead of double quotes

[ci skip]
This commit is contained in:
T.J. Schuck 2015-01-20 14:21:22 -05:00
parent d4ec25a317
commit 2a68b470f1
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ module ActionView
# end
#
# def scrub_attribute?(name)
# name == "style"
# name == 'style'
# end
# end
#
@ -66,7 +66,7 @@ module ActionView
# 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 %>