1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove non-US-ASCII characters [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-06-14 23:59:48 +09:00
parent d23917dd85
commit b8804010fb
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -1701,10 +1701,10 @@ static VALUE rb_ary_aref2(VALUE ary, VALUE b, VALUE e);
* call-seq:
* array[index] -> object or nil
* array[start, length] -> object or nil
* array[range] object or nil
* array[range] -> object or nil
* array.slice(index) -> object or nil
* array.slice(start, length) -> object or nil
* array.slice(range) object or nil
* array.slice(range) -> object or nil
*
* Returns elements from +self+; does not modify +self+.
*