From c0481e5818c9f01116607d658a9b9acbd4ab0c00 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Mon, 1 Jan 2024 11:12:54 -0500 Subject: [PATCH] [DOC] Fix indentation for Integer#div The line was indented, which caused it to be treated as a code block. --- numeric.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numeric.c b/numeric.c index d1d9ba758b..8ef6ce0502 100644 --- a/numeric.c +++ b/numeric.c @@ -4249,7 +4249,7 @@ fix_idiv(VALUE x, VALUE y) * 4.div(3.0) # => 1 * 4.div(Rational(3, 1)) # => 1 * - * Raises an exception if +numeric+ does not have method +div+. + * Raises an exception if +numeric+ does not have method +div+. * */