diff options
author | Marcel Molina <marcel@vernix.org> | 2006-01-13 04:43:33 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2006-01-13 04:43:33 +0000 |
commit | 0a7af125caa86aeb6608afc503997938554ce5dc (patch) | |
tree | d5a60243a8c4096c2f82c21bfc59406d56998f5f | |
parent | 489ace60fbf156ddca953ca2baa7e77774ff8d6a (diff) | |
download | rails-0a7af125caa86aeb6608afc503997938554ce5dc.tar.gz rails-0a7af125caa86aeb6608afc503997938554ce5dc.tar.bz2 rails-0a7af125caa86aeb6608afc503997938554ce5dc.zip |
Documentation typo fix. Closes #2367.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3407 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rw-r--r-- | actionpack/lib/action_view/helpers/form_helper.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 657708b986..0e94b9198f 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Documentation typo fix. #2367 [Blair Zajac] + * Remove Upload Progress. #2871 [Sean Treadway] * Fix typo in function name mapping in auto_complete_field. #2929 #3446 [doppler@gmail.com phil.ross@gmail.com] diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index ce93e1ced3..c896ace862 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -47,7 +47,7 @@ module ActionView # # If the object name contains square brackets the id for the object will be inserted. Example: # - # <%= textfield "person[]", "name" %> + # <%= text_field "person[]", "name" %> # # ...becomes: # |