From 50d1e00625091bf7f4c84afbdabb9006402a94ea Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Wed, 21 Nov 2018 17:08:06 +0900 Subject: Remove odd spaces [ci skip] --- activesupport/lib/active_support/core_ext/hash/slice.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activesupport/lib/active_support/core_ext/hash') diff --git a/activesupport/lib/active_support/core_ext/hash/slice.rb b/activesupport/lib/active_support/core_ext/hash/slice.rb index fb5887d57b..e07a5498ff 100644 --- a/activesupport/lib/active_support/core_ext/hash/slice.rb +++ b/activesupport/lib/active_support/core_ext/hash/slice.rb @@ -28,8 +28,8 @@ class Hash # Returns a hash containing the removed key/value pairs. # # hash = { a: 1, b: 2, c: 3, d: 4 } - # hash.slice!(:a, :b) # => {:c=>3, :d=>4 } - # hash # => {:a=>1, :b=>2 } + # hash.slice!(:a, :b) # => {:c=>3, :d=>4} + # hash # => {:a=>1, :b=>2} def slice!(*keys) omit = slice(*self.keys - keys) hash = slice(*keys) -- cgit v1.2.3