1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

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 %>