From d96fe5e4f8dd09bdbcb730b90382ab35e0be03d1 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Sat, 6 Jan 2024 11:43:57 -0500 Subject: [PATCH] [DOC] Fix indentation in Numeric#step --- numeric.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/numeric.c b/numeric.c index 42355d7760..1dd702d6cf 100644 --- a/numeric.c +++ b/numeric.c @@ -2966,8 +2966,8 @@ num_step_size(VALUE from, VALUE args, VALUE eobj) * greater than or equal to +to+ if +by+ is negative. * If +to+ is +nil+, the sequence is of infinite length. * - * If a block is given, calls the block with each number in the sequence; - * returns +self+. If no block is given, returns an Enumerator::ArithmeticSequence. + * If a block is given, calls the block with each number in the sequence; + * returns +self+. If no block is given, returns an Enumerator::ArithmeticSequence. * * Keyword Arguments *