diff options
| author | Claudio B. <claudiob@gmail.com> | 2012-12-07 16:54:32 -0800 |
|---|---|---|
| committer | Claudio B. <claudiob@gmail.com> | 2012-12-07 16:54:32 -0800 |
| commit | e618adbcabe59eaccfab1f721eb3cf1e915e012e (patch) | |
| tree | 435cbac2e067e0518b63283c5a96f9b8aa56b57c | |
| parent | fc6336d1bed794681b09cc10c80182cd457fb414 (diff) | |
| download | rails-e618adbcabe59eaccfab1f721eb3cf1e915e012e.tar.gz rails-e618adbcabe59eaccfab1f721eb3cf1e915e012e.tar.bz2 rails-e618adbcabe59eaccfab1f721eb3cf1e915e012e.zip | |
Update activesupport/lib/active_support/deprecation/proxy_wrappers.rb
Fix a typo in rdoc (*expect* for *except*)
| -rw-r--r-- | activesupport/lib/active_support/deprecation/proxy_wrappers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation/proxy_wrappers.rb b/activesupport/lib/active_support/deprecation/proxy_wrappers.rb index 17e69c34a5..485dc91063 100644 --- a/activesupport/lib/active_support/deprecation/proxy_wrappers.rb +++ b/activesupport/lib/active_support/deprecation/proxy_wrappers.rb @@ -30,7 +30,7 @@ module ActiveSupport # @old_object = DeprecatedObjectProxy.new(Object.new, "Don't use this object anymore!") # @old_object = DeprecatedObjectProxy.new(Object.new, "Don't use this object anymore!", deprecator_instance) # - # When someone execute any method expect +inspect+ on proxy object this will + # When someone executes any method except +inspect+ on proxy object this will # trigger +warn+ method on +deprecator_instance+. # # Default deprecator is <tt>ActiveSupport::Deprecation</tt> |
