diff options
author | Matt Duncan <mrduncan@gmail.com> | 2011-04-15 22:09:23 -0400 |
---|---|---|
committer | Matt Duncan <mrduncan@gmail.com> | 2011-04-15 22:09:23 -0400 |
commit | 50b2eb8cbd6cb923026b8fbb98482e06cdbd21ce (patch) | |
tree | 6123fa671f38d242911e89e6dd96a6a56161f478 /actionpack | |
parent | 1229904602b8c3b354a144ce33468be408cf9cec (diff) | |
download | rails-50b2eb8cbd6cb923026b8fbb98482e06cdbd21ce.tar.gz rails-50b2eb8cbd6cb923026b8fbb98482e06cdbd21ce.tar.bz2 rails-50b2eb8cbd6cb923026b8fbb98482e06cdbd21ce.zip |
Fixing another example result
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/sanitize_helper.rb | 2 |
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 |