diff options
| -rw-r--r-- | actionview/lib/action_view/helpers/url_helper.rb | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/actionview/lib/action_view/helpers/url_helper.rb b/actionview/lib/action_view/helpers/url_helper.rb index 49da5eba5d..8843a89362 100644 --- a/actionview/lib/action_view/helpers/url_helper.rb +++ b/actionview/lib/action_view/helpers/url_helper.rb @@ -173,11 +173,10 @@ module ActionView        #   link_to "Visit Other Site", "http://www.rubyonrails.org/", data: { confirm: "Are you sure?" }        #   # => <a href="http://www.rubyonrails.org/" data-confirm="Are you sure?">Visit Other Site</a>        # -      # Also you can set target attribute with <tt>target</tt> options: -      # -      #   link_to "External link", "http://www.rubyonrails.org/", target: "_blank" -      #   # => <a href="http://www.rubyonrails.org/" target="_blank">External link</a> +      # Also you can set any link attributes such as <tt>target</tt>, <tt>rel</tt>, <tt>type</tt>:        # +      #   link_to "External link", "http://www.rubyonrails.org/", target: "_blank", rel: "nofollow" +      #   # => <a href="http://www.rubyonrails.org/" target="_blank" rel="nofollow">External link</a>        def link_to(name = nil, options = nil, html_options = nil, &block)          html_options, options, name = options, name, block if block_given?          options ||= {} | 
