aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
diff options
context:
space:
mode:
authorjacortinas <jacortinas@gmail.com>2010-04-30 09:05:32 -0500
committerMikel Lindsaar <raasdnil@gmail.com>2010-06-03 23:32:08 +1000
commit9e8de7d9bce19e3fdfe7f125eb6b284048b42bee (patch)
tree7f03c36c2397a16619d6e104e8b9459e4bd520a5 /activesupport/lib/active_support/core_ext
parent22a32f4dd6c9f4d142f17c85949ea5d20534485e (diff)
downloadrails-9e8de7d9bce19e3fdfe7f125eb6b284048b42bee.tar.gz
rails-9e8de7d9bce19e3fdfe7f125eb6b284048b42bee.tar.bz2
rails-9e8de7d9bce19e3fdfe7f125eb6b284048b42bee.zip
A small rdoc change made on lines 39 and 41 on activesupport/lib/active_support/core_ext/object/to_param.rb. It looks like the method name might have been changed, and the comments were never changed to coincide with the new method name.
Diffstat (limited to 'activesupport/lib/active_support/core_ext')
-rwxr-xr-x[-rw-r--r--]activesupport/lib/active_support/core_ext/object/to_param.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/to_param.rb b/activesupport/lib/active_support/core_ext/object/to_param.rb
index 49e41e919a..06f077e920 100644..100755
--- a/activesupport/lib/active_support/core_ext/object/to_param.rb
+++ b/activesupport/lib/active_support/core_ext/object/to_param.rb
@@ -38,9 +38,9 @@ class Hash
# passed to enclose the param names (see example below).
#
# ==== Examples
- # { :name => 'David', :nationality => 'Danish' }.to_query # => "name=David&nationality=Danish"
+ # { :name => 'David', :nationality => 'Danish' }.to_param # => "name=David&nationality=Danish"
#
- # { :name => 'David', :nationality => 'Danish' }.to_query('user') # => "user[name]=David&user[nationality]=Danish"
+ # { :name => 'David', :nationality => 'Danish' }.to_param('user') # => "user[name]=David&user[nationality]=Danish"
def to_param(namespace = nil)
collect do |key, value|
value.to_query(namespace ? "#{namespace}[#{key}]" : key)