aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/form_helpers.md
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2017-03-12 19:37:48 +0530
committerGitHub <noreply@github.com>2017-03-12 19:37:48 +0530
commit4d5060072b5446e0d13873f7edbecaf3527e7846 (patch)
tree5a2412f940a70e04bae2ea76c02ccc3eee0d8381 /guides/source/form_helpers.md
parent1aa8b509a08efd60f5391abbc6c039f872511f27 (diff)
downloadrails-4d5060072b5446e0d13873f7edbecaf3527e7846.tar.gz
rails-4d5060072b5446e0d13873f7edbecaf3527e7846.tar.bz2
rails-4d5060072b5446e0d13873f7edbecaf3527e7846.zip
Add link to mentioned API [ci skip] (#28392)
Diffstat (limited to 'guides/source/form_helpers.md')
-rw-r--r--guides/source/form_helpers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index 8ad76ad01e..0508b0fb38 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -531,7 +531,7 @@ To leverage time zone support in Rails, you have to ask your users what time zon
<%= time_zone_select(:person, :time_zone) %>
```
-There is also `time_zone_options_for_select` helper for a more manual (therefore more customizable) way of doing this. Read the API documentation to learn about the possible arguments for these two methods.
+There is also `time_zone_options_for_select` helper for a more manual (therefore more customizable) way of doing this. Read the [API documentation](http://api.rubyonrails.org/classes/ActionView/Helpers/FormOptionsHelper.html#method-i-time_zone_options_for_select) to learn about the possible arguments for these two methods.
Rails _used_ to have a `country_select` helper for choosing countries, but this has been extracted to the [country_select plugin](https://github.com/stefanpenner/country_select). When using this, be aware that the exclusion or inclusion of certain names from the list can be somewhat controversial (and was the reason this functionality was extracted from Rails).