aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/sanitize_helper.rb
diff options
context:
space:
mode:
authorMatt Duncan <mrduncan@gmail.com>2011-04-15 22:09:23 -0400
committerMatt Duncan <mrduncan@gmail.com>2011-04-15 22:09:23 -0400
commit50b2eb8cbd6cb923026b8fbb98482e06cdbd21ce (patch)
tree6123fa671f38d242911e89e6dd96a6a56161f478 /actionpack/lib/action_view/helpers/sanitize_helper.rb
parent1229904602b8c3b354a144ce33468be408cf9cec (diff)
downloadrails-50b2eb8cbd6cb923026b8fbb98482e06cdbd21ce.tar.gz
rails-50b2eb8cbd6cb923026b8fbb98482e06cdbd21ce.tar.bz2
rails-50b2eb8cbd6cb923026b8fbb98482e06cdbd21ce.zip
Fixing another example result
Diffstat (limited to 'actionpack/lib/action_view/helpers/sanitize_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/sanitize_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/sanitize_helper.rb b/actionpack/lib/action_view/helpers/sanitize_helper.rb
index 0fee34f8a4..841be0a567 100644
--- a/actionpack/lib/action_view/helpers/sanitize_helper.rb
+++ b/actionpack/lib/action_view/helpers/sanitize_helper.rb
@@ -94,7 +94,7 @@ module ActionView
# # => Please e-mail me at me@email.com.
#
# strip_links('Blog: <a href="http://www.myblog.com/" class="nav" target=\"_blank\">Visit</a>.')
- # # => Blog: Visit
+ # # => Blog: Visit.
def strip_links(html)
self.class.link_sanitizer.sanitize(html)
end