[DOC] Missing comment markers

This commit is contained in:
Nobuyoshi Nakada 2023-09-27 16:18:05 +09:00
parent 262a0cc868
commit 50520cc193
No known key found for this signature in database
GPG key ID: 3582D74E1FEE4465
9 changed files with 17 additions and 17 deletions

6
enum.c
View file

@ -4936,11 +4936,11 @@ enum_compact(VALUE obj)
* - #group_by: Returns a Hash that partitions the elements into groups.
* - #partition: Returns elements partitioned into two new Arrays, as determined by the given block.
* - #slice_after: Returns a new Enumerator whose entries are a partition of +self+,
based either on a given +object+ or a given block.
* based either on a given +object+ or a given block.
* - #slice_before: Returns a new Enumerator whose entries are a partition of +self+,
based either on a given +object+ or a given block.
* based either on a given +object+ or a given block.
* - #slice_when: Returns a new Enumerator whose entries are a partition of +self+
based on the given block.
* based on the given block.
* - #chunk: Returns elements organized into chunks as specified by the given block.
* - #chunk_while: Returns elements organized into chunks as specified by the given block.
*