aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib
diff options
context:
space:
mode:
authorTimm <kaspth@gmail.com>2014-02-11 21:01:41 +0100
committerTimm <kaspth@gmail.com>2014-06-16 21:04:22 +0200
commit7587632b9346645d97b552ab0219bd209faa3238 (patch)
treeb036a3933a40f9839763321532037c8efb291104 /actionview/lib
parent13da2788f3461fcf9ec6c7b3d4e38c2857a9665c (diff)
downloadrails-7587632b9346645d97b552ab0219bd209faa3238.tar.gz
rails-7587632b9346645d97b552ab0219bd209faa3238.tar.bz2
rails-7587632b9346645d97b552ab0219bd209faa3238.zip
Changed configuration documentation to no longer state it replaces a Set.
Diffstat (limited to 'actionview/lib')
-rw-r--r--actionview/lib/action_view/helpers/sanitize_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/helpers/sanitize_helper.rb b/actionview/lib/action_view/helpers/sanitize_helper.rb
index b614126aaf..38354a1d0b 100644
--- a/actionview/lib/action_view/helpers/sanitize_helper.rb
+++ b/actionview/lib/action_view/helpers/sanitize_helper.rb
@@ -178,7 +178,7 @@ module ActionView
@white_list_sanitizer ||= Rails::Html::WhiteListSanitizer.new
end
- # Replaces the Set of allowed tags for the +sanitize+ helper.
+ # Replaces the allowed tags for the +sanitize+ helper.
#
# class Application < Rails::Application
# config.action_view.sanitized_allowed_tags = 'table', 'tr', 'td'
@@ -188,7 +188,7 @@ module ActionView
Rails::Html::WhiteListSanitizer.allowed_tags = tags
end
- # Replaces the Set of allowed HTML attributes for the +sanitize+ helper.
+ # Replaces the allowed HTML attributes for the +sanitize+ helper.
#
# class Application < Rails::Application
# config.action_view.sanitized_allowed_attributes = ['onclick', 'longdesc']