diff options
author | Pablo Herrero <pablodherrero@gmail.com> | 2014-10-29 20:51:32 -0300 |
---|---|---|
committer | Pablo Herrero <pablodherrero@gmail.com> | 2014-10-29 21:03:26 -0300 |
commit | 724db9eb6236eb21051d85438b62e452765ee291 (patch) | |
tree | 58f4744aa36e622343084cb737511cd0792296e1 /actionview | |
parent | c13ad2d1e2108670cbfb6ef87a78ab28cc86c674 (diff) | |
download | rails-724db9eb6236eb21051d85438b62e452765ee291.tar.gz rails-724db9eb6236eb21051d85438b62e452765ee291.tar.bz2 rails-724db9eb6236eb21051d85438b62e452765ee291.zip |
Fix typo at form_helper docs [ci skip]
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/helpers/form_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb index 038f9e384b..03f80ff360 100644 --- a/actionview/lib/action_view/helpers/form_helper.rb +++ b/actionview/lib/action_view/helpers/form_helper.rb @@ -1231,8 +1231,8 @@ module ActionView # end # # The above code creates a new method +div_radio_button+ which wraps a div - # around the a new radio button. Note that when options are passed in, you - # must called +objectify_options+ in order for the model object to get + # around the new radio button. Note that when options are passed in, you + # must call +objectify_options+ in order for the model object to get # correctly passed to the method. If +objectify_options+ is not called, # then the newly created helper will not be linked back to the model. # |