aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2014-11-04 18:47:06 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2014-11-04 18:47:06 +0530
commitb670fadb978c8a12c3414ed842cd49e4fde2cec0 (patch)
tree72a9925c0217a2c5d78627642af2bcd93ffecef9 /activesupport
parent061687c56898b88a2fb0e24386e199a45f1ce481 (diff)
downloadrails-b670fadb978c8a12c3414ed842cd49e4fde2cec0.tar.gz
rails-b670fadb978c8a12c3414ed842cd49e4fde2cec0.tar.bz2
rails-b670fadb978c8a12c3414ed842cd49e4fde2cec0.zip
fix typo [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/hash/slice.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/slice.rb b/activesupport/lib/active_support/core_ext/hash/slice.rb
index 962655a6c1..41b2279013 100644
--- a/activesupport/lib/active_support/core_ext/hash/slice.rb
+++ b/activesupport/lib/active_support/core_ext/hash/slice.rb
@@ -5,7 +5,7 @@ class Hash
# { a: 1, b: 2, c: 3, d: 4 }.slice(:a, :b)
# # => {:a=>1, :b=>2}
#
- # This is useful for limiting an options hash to validate keys before
+ # This is useful for limiting an options hash to valid keys before
# passing to a method:
#
# def search(criteria = {})