aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-10-27 23:42:22 -0700
committerJosé Valim <jose.valim@gmail.com>2011-10-27 23:42:22 -0700
commit2e74334abdf7df2b663cd96711693d710cffdccc (patch)
tree22eb4b519e8fd2dc604ad9295103d263bb0926c2
parent4a065d56edcafacc99196522ea35fe28c5f45937 (diff)
parent07c4297282c9c2d0768922722ad2ab08dedf4d8d (diff)
downloadrails-2e74334abdf7df2b663cd96711693d710cffdccc.tar.gz
rails-2e74334abdf7df2b663cd96711693d710cffdccc.tar.bz2
rails-2e74334abdf7df2b663cd96711693d710cffdccc.zip
Merge pull request #3456 from pwim/documentation-fix
Add missing type to number_field_tag documentation
-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 13b9dc8553..1424a3584d 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -582,7 +582,7 @@ module ActionView
#
# ==== Examples
# number_field_tag 'quantity', nil, :in => 1...10
- # => <input id="quantity" name="quantity" min="1" max="9" />
+ # => <input id="quantity" name="quantity" min="1" max="9" type="number" />
def number_field_tag(name, value = nil, options = {})
options = options.stringify_keys
options["type"] ||= "number"