Skip to content

Commit

Permalink
A small rdoc change made on lines 39 and 41 on activesupport/lib/acti…
Browse files Browse the repository at this point in the history
…ve_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.
  • Loading branch information
jacortinas authored and mikel committed Jun 3, 2010
1 parent 22a32f4 commit 9e8de7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/core_ext/object/to_param.rb 100644 → 100755
Expand Up @@ -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)
Expand Down

0 comments on commit 9e8de7d

Please sign in to comment.