aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Hollingworth <grant@antiflux.org>2008-05-31 09:44:17 -0700
committerPratik Naik <pratiknaik@gmail.com>2008-06-02 12:25:51 +0100
commitad3c97cea6dd0714652db7d9b5b4d06b81e5c035 (patch)
tree9d92421e794188fc62d5d014c4e454c3f7356bd0
parentb6e529ef62596e950ff775ce1d0f51fb16643cad (diff)
downloadrails-ad3c97cea6dd0714652db7d9b5b4d06b81e5c035.tar.gz
rails-ad3c97cea6dd0714652db7d9b5b4d06b81e5c035.tar.bz2
rails-ad3c97cea6dd0714652db7d9b5b4d06b81e5c035.zip
fixed typo: extra word
-rw-r--r--activesupport/lib/active_support/core_ext/hash/except.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/except.rb b/activesupport/lib/active_support/core_ext/hash/except.rb
index 8362cd880e..64d690965a 100644
--- a/activesupport/lib/active_support/core_ext/hash/except.rb
+++ b/activesupport/lib/active_support/core_ext/hash/except.rb
@@ -14,7 +14,7 @@ module ActiveSupport #:nodoc:
reject { |key,| rejected.include?(key) }
end
- # Replaces the hash without only the given keys.
+ # Replaces the hash without the given keys.
def except!(*keys)
replace(except(*keys))
end