summaryrefslogtreecommitdiff
path: root/enum.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2023-09-27 16:18:05 +0900
committerNobuyoshi Nakada <[email protected]>2023-09-27 16:18:05 +0900
commit50520cc1930331bccdb94730e17ddc01798f2be0 ()
tree667599a298d4c5af429cbdfe8a5fc6825826bb0c /enum.c
parent262a0cc8682cdcb58c28e2a9c64a984ac9171fed (diff)
[DOC] Missing comment markers
-rw-r--r--enum.c6
1 files changed, 3 insertions, 3 deletions
@@ -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.
* - #slice_before: Returns a new Enumerator whose entries are a partition of +self+,
- 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.
* - #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.
*