diff options
author | Matt Bridges <mbridges.91@gmail.com> | 2013-01-13 23:59:14 -0600 |
---|---|---|
committer | Matt Bridges <mbridges.91@gmail.com> | 2013-01-13 23:59:14 -0600 |
commit | bc9433f49598d9af163756f465ab76cb658a6dd0 (patch) | |
tree | f053228a0b9ed514658f4ce3134fa69ce625755d /activesupport | |
parent | c22989d32613f13b3f1b9ed234d9e76c72d60dbd (diff) | |
download | rails-bc9433f49598d9af163756f465ab76cb658a6dd0.tar.gz rails-bc9433f49598d9af163756f465ab76cb658a6dd0.tar.bz2 rails-bc9433f49598d9af163756f465ab76cb658a6dd0.zip |
fix reference to ActiveSupport::ProxyObject
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/proxy_object.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/proxy_object.rb b/activesupport/lib/active_support/proxy_object.rb index a2bdf1d790..20a0fd8e62 100644 --- a/activesupport/lib/active_support/proxy_object.rb +++ b/activesupport/lib/active_support/proxy_object.rb @@ -5,7 +5,7 @@ module ActiveSupport undef_method :== undef_method :equal? - # Let ActiveSupport::BasicObject at least raise exceptions. + # Let ActiveSupport::ProxyObject at least raise exceptions. def raise(*args) ::Object.send(:raise, *args) end |