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

Fix indent [ci skip]

Suggested by @hanachin at
https://github.com/rurema/doctree/pull/2425#discussion_r551327592
This commit is contained in:
Kazuhiro NISHIYAMA 2021-01-05 00:19:48 +09:00
parent 1fe111d7d0
commit 3fee9e7021
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A

8
enum.c
View file

@ -4196,10 +4196,10 @@ compact_i(RB_BLOCK_CALL_FUNC_ARGLIST(i, ary))
* Returns an array of all non-+nil+ elements from enumeration.
*
* def with_nils
* yield 1
* yield 2
* yield nil
* yield 3
* yield 1
* yield 2
* yield nil
* yield 3
* end
*
* to_enum(:with_nils).compact