From 3e5c4ebe4bab556af2dd5d1ea83fa6d16ac0578b Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Sun, 14 Dec 2025 13:32:27 -0500 Subject: [PATCH] [DOC] Fix backticks in Numeric#ceil --- numeric.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numeric.c b/numeric.c index 813b81b983..f96535cd24 100644 --- a/numeric.c +++ b/numeric.c @@ -2621,7 +2621,7 @@ num_floor(int argc, VALUE *argv, VALUE num) * ceil(ndigits = 0) -> float or integer * * Returns the smallest float or integer that is greater than or equal to +self+, - * as specified by the given `ndigits`, + * as specified by the given +ndigits+, * which must be an * {integer-convertible object}[rdoc-ref:implicit_conversion.rdoc@Integer-Convertible+Objects]. *