summaryrefslogtreecommitdiff
path: root/range.c
diff options
context:
space:
mode:
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 e4e73bd85d..49c34aa8cb 100644
--- a/range.c
+++ b/range.c
@@ -2502,7 +2502,7 @@ range_overlap(VALUE range, VALUE other)
* (1...4).to_a # => [1, 2, 3]
* ('a'...'d').to_a # => ["a", "b", "c"]
*
- * A range may be created using method Range.new:
+ * - Method Range.new:
*
* # Ranges that by default include the given end value.
* Range.new(1, 4).to_a # => [1, 2, 3, 4]