aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal/params_wrapper.rb
diff options
context:
space:
mode:
authorJohn Gallagher <john@synapticmishap.co.uk>2012-10-27 21:55:56 +0100
committerJohn Gallagher <john@synapticmishap.co.uk>2012-10-27 21:55:56 +0100
commit4edea9e82087f5a331a277ee4bf7b01256d11be0 (patch)
tree58164e6aa6ac19a644e590dc35d3ab98fc5a42ef /actionpack/lib/action_controller/metal/params_wrapper.rb
parentc570ba70fe6ed53fd1ac5f30f0c9ba4cb7cd4796 (diff)
parent62f273b6501db72e3c902d947e6828dcab9c004a (diff)
downloadrails-4edea9e82087f5a331a277ee4bf7b01256d11be0.tar.gz
rails-4edea9e82087f5a331a277ee4bf7b01256d11be0.tar.bz2
rails-4edea9e82087f5a331a277ee4bf7b01256d11be0.zip
Merge branch 'master' of https://github.com/lifo/docrails
Diffstat (limited to 'actionpack/lib/action_controller/metal/params_wrapper.rb')
-rw-r--r--actionpack/lib/action_controller/metal/params_wrapper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/params_wrapper.rb b/actionpack/lib/action_controller/metal/params_wrapper.rb
index 88b9e78da7..09abc999c1 100644
--- a/actionpack/lib/action_controller/metal/params_wrapper.rb
+++ b/actionpack/lib/action_controller/metal/params_wrapper.rb
@@ -82,7 +82,7 @@ module ActionController
# would use to determine the attribute names from.
#
# ==== Examples
- # wrap_parameters :format => :xml
+ # wrap_parameters format: :xml
# # enables the parameter wrapper for XML format
#
# wrap_parameters :person
@@ -92,7 +92,7 @@ module ActionController
# # wraps parameters by determining the wrapper key from Person class
# (+person+, in this case) and the list of attribute names
#
- # wrap_parameters :include => [:username, :title]
+ # wrap_parameters include: [:username, :title]
# # wraps only +:username+ and +:title+ attributes from parameters.
#
# wrap_parameters false