aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/ordered_hash.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-04 16:20:49 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-04 16:21:44 -0800
commit9d13b9eed8652b85df11294d8135bbfc36a86563 (patch)
tree7520f3f0f97f1b95e2262e607465c467bd885175 /activesupport/lib/active_support/ordered_hash.rb
parent638b3b15a13c4e274cfb317c40248e9feea3bfae (diff)
downloadrails-9d13b9eed8652b85df11294d8135bbfc36a86563.tar.gz
rails-9d13b9eed8652b85df11294d8135bbfc36a86563.tar.bz2
rails-9d13b9eed8652b85df11294d8135bbfc36a86563.zip
Fix OrderedHash#inspect recursion
Diffstat (limited to 'activesupport/lib/active_support/ordered_hash.rb')
-rw-r--r--activesupport/lib/active_support/ordered_hash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/ordered_hash.rb b/activesupport/lib/active_support/ordered_hash.rb
index d3cd2bcddd..fed8094a24 100644
--- a/activesupport/lib/active_support/ordered_hash.rb
+++ b/activesupport/lib/active_support/ordered_hash.rb
@@ -93,7 +93,7 @@ module ActiveSupport
end
def inspect
- "#<OrderedHash #{self.to_hash.inspect}>"
+ "#<OrderedHash #{super}>"
end
private