summaryrefslogtreecommitdiff
path: root/range.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 /range.c
parent262a0cc8682cdcb58c28e2a9c64a984ac9171fed (diff)
[DOC] Missing comment markers
Diffstat (limited to 'range.c')
-rw-r--r--range.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/range.c b/range.c
index 199d1056db..d0e0c4c1af 100644
--- a/range.c
+++ b/range.c
@@ -2488,7 +2488,7 @@ range_overlap(VALUE range, VALUE other)
* - #%: Requires argument +n+; calls the block with each +n+-th element of +self+.
* - #each: Calls the block with each element of +self+.
* - #step: Takes optional argument +n+ (defaults to 1);
- calls the block with each +n+-th element of +self+.
+ * calls the block with each +n+-th element of +self+.
*
* === Methods for Converting
*