From 98fa0ab4d955cf275ceb15573a5d40edd2e82522 Mon Sep 17 00:00:00 2001 From: mrkn Date: Wed, 12 Sep 2018 08:51:34 +0000 Subject: [DOC] Modify descriptions for ArithmeticSequence [ci-skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'numeric.c') diff --git a/numeric.c b/numeric.c index ef72491987..da0bad3211 100644 --- a/numeric.c +++ b/numeric.c @@ -2654,9 +2654,11 @@ num_step_size(VALUE from, VALUE args, VALUE eobj) /* * call-seq: * num.step(by: step, to: limit) {|i| block } -> self - * num.step(by: step, to: limit) -> an_enumerator + * num.step(by: step, to: limit) -> an_enumerator + * num.step(by: step, to: limit) -> an_arithmetic_sequence * num.step(limit=nil, step=1) {|i| block } -> self * num.step(limit=nil, step=1) -> an_enumerator + * num.step(limit=nil, step=1) -> an_arithmetic_sequence * * Invokes the given block with the sequence of numbers starting at +num+, * incremented by +step+ (defaulted to +1+) on each call. @@ -2685,6 +2687,8 @@ num_step_size(VALUE from, VALUE args, VALUE eobj) * and increments itself using the + operator. * * If no block is given, an Enumerator is returned instead. + * Especially, the enumerator is an Enumerator::ArithmeticSequence + * if both +limit+ and +step+ are kind of Numeric or nil. * * For example: * -- cgit v1.2.3