diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2017-10-15 10:22:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-15 10:22:54 -0700 |
commit | a42dd8930b5a1d9e98a41f990192aab34dab11e5 (patch) | |
tree | 4b4c00a8e9f5235f429e09abbb0abc7470e9fca6 | |
parent | b1c09e1b319decfb60461f2eda1d15fa9762fde8 (diff) | |
parent | 621e1a21f3f09de43885501741500faadea10b05 (diff) | |
download | rails-a42dd8930b5a1d9e98a41f990192aab34dab11e5.tar.gz rails-a42dd8930b5a1d9e98a41f990192aab34dab11e5.tar.bz2 rails-a42dd8930b5a1d9e98a41f990192aab34dab11e5.zip |
Merge pull request #30862 from yhirano55/remove_needless_space_in_action_view_guide
Remove a needless space in Action View Guide [ci skip]
-rw-r--r-- | guides/source/action_view_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index 349108c207..c1e02745de 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -1160,7 +1160,7 @@ Returns a string of option tags for pretty much any time zone in the world. Returns select and option tags for the given object and method, using `time_zone_options_for_select` to generate the list of option tags. ```ruby -time_zone_select( "user", "time_zone") +time_zone_select("user", "time_zone") ``` #### date_field |