aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_tag_helper.rb
diff options
context:
space:
mode:
authorPaulo Luis Franchini Casaretto <pcasaretto@gmail.com>2013-01-03 11:07:20 -0200
committerPaulo Luis Franchini Casaretto <pcasaretto@gmail.com>2013-01-03 11:07:20 -0200
commiteab2b999edb167a0e4a373671009ffbbc5707295 (patch)
treebf9404624f28ffc7a4bdd55bb941fd0047ae37eb /actionpack/lib/action_view/helpers/form_tag_helper.rb
parentde729af21ed0caea56b2e5cc772270cc864c7d82 (diff)
downloadrails-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.
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_tag_helper.rb2
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>