aboutsummaryrefslogtreecommitdiffstats
path: root/enum.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-09-27 16:18:05 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-09-27 16:18:05 +0900
commit50520cc1930331bccdb94730e17ddc01798f2be0 (patch)
tree667599a298d4c5af429cbdfe8a5fc6825826bb0c /enum.c
parent262a0cc8682cdcb58c28e2a9c64a984ac9171fed (diff)
downloadruby-50520cc1930331bccdb94730e17ddc01798f2be0.tar.gz
[DOC] Missing comment markers
Diffstat (limited to 'enum.c')
-rw-r--r--enum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/enum.c b/enum.c
index 355170cc3e..7f15836ba8 100644
--- a/enum.c
+++ b/enum.c
@@ -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.
*