diff options
author | Xavier Noria <fxn@hashref.com> | 2013-12-02 06:17:09 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-12-02 06:17:09 -0800 |
commit | d362ee17dbd1a500fc2e0331025845d8d38977e7 (patch) | |
tree | c0401093f7f5640bca964612d2af7a678300c688 /actionview/lib | |
parent | f7e527b1f55a109a56ede2f16dccf258f608ee9a (diff) | |
parent | ef0f633c66d8eac6612c118c66ccf1b096bd4d3e (diff) | |
download | rails-d362ee17dbd1a500fc2e0331025845d8d38977e7.tar.gz rails-d362ee17dbd1a500fc2e0331025845d8d38977e7.tar.bz2 rails-d362ee17dbd1a500fc2e0331025845d8d38977e7.zip |
Merge pull request #13117 from akshay-vishnoi/typo
Typo and grammatical fixes [ci skip]
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/helpers/asset_tag_helper.rb | 2 | ||||
-rw-r--r-- | actionview/lib/action_view/helpers/form_options_helper.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/helpers/asset_tag_helper.rb b/actionview/lib/action_view/helpers/asset_tag_helper.rb index b1ba9da4cf..163d01c2eb 100644 --- a/actionview/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionview/lib/action_view/helpers/asset_tag_helper.rb @@ -103,7 +103,7 @@ module ActionView }.join("\n").html_safe end - # Returns a link tag that browsers and news readers can use to auto-detect + # Returns a link tag that browsers and feed readers can use to auto-detect # an RSS or Atom feed. The +type+ can either be <tt>:rss</tt> (default) or # <tt>:atom</tt>. Control the link options in url_for format using the # +url_options+. You can modify the LINK tag itself in +tag_options+. diff --git a/actionview/lib/action_view/helpers/form_options_helper.rb b/actionview/lib/action_view/helpers/form_options_helper.rb index 4347983bad..f625a9ff49 100644 --- a/actionview/lib/action_view/helpers/form_options_helper.rb +++ b/actionview/lib/action_view/helpers/form_options_helper.rb @@ -260,7 +260,7 @@ module ActionView Tags::GroupedCollectionSelect.new(object, method, self, collection, group_method, group_label_method, option_key_method, option_value_method, options, html_options).render end - # Return select and option tags for the given object and method, using + # Returns select and option tags for the given object and method, using # #time_zone_options_for_select to generate the list of option tags. # # In addition to the <tt>:include_blank</tt> option documented above, |