diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2017-01-20 15:41:23 +0200 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2017-01-20 15:41:23 +0200 |
commit | ec3933e14c8b0df3fc306c59d63e3f10c51cb1e1 (patch) | |
tree | d1d80e1c2f91f4a273db42edd4a2e8d90964e0c7 /activesupport | |
parent | a3813dce9a0c950a4af7909111fa730a2622b1db (diff) | |
download | rails-ec3933e14c8b0df3fc306c59d63e3f10c51cb1e1.tar.gz rails-ec3933e14c8b0df3fc306c59d63e3f10c51cb1e1.tar.bz2 rails-ec3933e14c8b0df3fc306c59d63e3f10c51cb1e1.zip |
add missing comment out [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/array/access.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/access.rb b/activesupport/lib/active_support/core_ext/array/access.rb index 37d833887a..fca33c9d69 100644 --- a/activesupport/lib/active_support/core_ext/array/access.rb +++ b/activesupport/lib/active_support/core_ext/array/access.rb @@ -31,7 +31,7 @@ class Array # # people = ["David", "Rafael", "Aaron", "Todd"] # people.without "Aaron", "Todd" - # => ["David", "Rafael"] + # # => ["David", "Rafael"] # # Note: This is an optimization of `Enumerable#without` that uses `Array#-` # instead of `Array#reject` for performance reasons. |