eternal confusion! fixed doco to inform correctly

This commit is contained in:
Aditya Sanghi 2010-12-15 16:13:36 +05:30
parent a7791c3752
commit 6fc3750471
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ module ActionView
# * Any other key creates standard HTML attributes for the tag.
#
# ==== Examples
# select_tag "people", options_from_collection_for_select(@people, "name", "id")
# select_tag "people", options_from_collection_for_select(@people, "id", "name")
# # <select id="people" name="people"><option value="1">David</option></select>
#
# select_tag "people", "<option>David</option>"