diff options
author | Paulo Luis Franchini Casaretto <pcasaretto@gmail.com> | 2013-01-03 11:07:20 -0200 |
---|---|---|
committer | Paulo Luis Franchini Casaretto <pcasaretto@gmail.com> | 2013-01-03 11:07:20 -0200 |
commit | eab2b999edb167a0e4a373671009ffbbc5707295 (patch) | |
tree | bf9404624f28ffc7a4bdd55bb941fd0047ae37eb | |
parent | de729af21ed0caea56b2e5cc772270cc864c7d82 (diff) | |
download | rails-eab2b999edb167a0e4a373671009ffbbc5707295.tar.gz rails-eab2b999edb167a0e4a373671009ffbbc5707295.tar.bz2 rails-eab2b999edb167a0e4a373671009ffbbc5707295.zip |
Fix typo on form_tag_helper.rb
The inline documentantion had a typo that was somewhat confusing.
-rw-r--r-- | actionpack/lib/action_view/helpers/form_tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index ff83ef3ca1..479739bebd 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -184,7 +184,7 @@ module ActionView # # => <label for="name">Name</label> # # label_tag 'name', 'Your name' - # # => <label for="name">Your Name</label> + # # => <label for="name">Your name</label> # # label_tag 'name', nil, class: 'small_label' # # => <label for="name" class="small_label">Name</label> |