aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorRishi Jain <rishi@joshsoftware.com>2014-11-04 09:13:12 +0530
committerRishi Jain <rishi@joshsoftware.com>2014-11-04 09:13:12 +0530
commit06467ad7fe880d8afba4c95d4558382d5db15ee3 (patch)
treece07da2bcdb3858f8de958c66385bd6dbee0255f /activesupport/lib
parent78d4f2bcfb2bda48078766b7d7edf9b48e987851 (diff)
downloadrails-06467ad7fe880d8afba4c95d4558382d5db15ee3.tar.gz
rails-06467ad7fe880d8afba4c95d4558382d5db15ee3.tar.bz2
rails-06467ad7fe880d8afba4c95d4558382d5db15ee3.zip
fixed typo [ci skip]
Diffstat (limited to 'activesupport/lib')
-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 41b2279013..962655a6c1 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 valid keys before
+ # This is useful for limiting an options hash to validate keys before
# passing to a method:
#
# def search(criteria = {})