aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/hash/slice.rb
diff options
context:
space:
mode:
authorIslam Wazery <wazery@ubuntu.com>2015-03-07 11:38:29 +0000
committerIslam Wazery <wazery@ubuntu.com>2015-03-07 11:43:15 +0000
commit69db8dc468c16a961d0ee55384f97a1ccbe02da3 (patch)
tree0e74ecc59d0408eee9723a77cefbcbb00e1f6a0c /activesupport/lib/active_support/core_ext/hash/slice.rb
parented1ff198f8d41d9333135408e65c5461f73eca92 (diff)
downloadrails-69db8dc468c16a961d0ee55384f97a1ccbe02da3.tar.gz
rails-69db8dc468c16a961d0ee55384f97a1ccbe02da3.tar.bz2
rails-69db8dc468c16a961d0ee55384f97a1ccbe02da3.zip
Doc fixes [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/core_ext/hash/slice.rb')
-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..1d5f38231a 100644
--- a/activesupport/lib/active_support/core_ext/hash/slice.rb
+++ b/activesupport/lib/active_support/core_ext/hash/slice.rb
@@ -1,5 +1,5 @@
class Hash
- # Slice a hash to include only the given keys. Returns a hash containing
+ # Slices a hash to include only the given keys. Returns a hash containing
# the given keys.
#
# { a: 1, b: 2, c: 3, d: 4 }.slice(:a, :b)