From 5df574d26e6c97281678414a3eecf80544d7f494 Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Sun, 1 Sep 2024 17:22:26 +0100 Subject: [PATCH] [DOC] Fix links --- numeric.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/numeric.c b/numeric.c index 3a19abea79..ef7a39dc48 100644 --- a/numeric.c +++ b/numeric.c @@ -2744,7 +2744,7 @@ flo_truncate(int argc, VALUE *argv, VALUE num) * Returns the largest float or integer that is less than or equal to +self+, * as specified by the given `ndigits`, * which must be an - * [integer-convertible object](rdoc-ref:implicit_conversion.rdoc@Integer-Convertible+Objects). + * {integer-convertible object}[rdoc-ref:implicit_conversion.rdoc@Integer-Convertible+Objects]. * * Equivalent to self.to_f.floor(ndigits). * @@ -2764,7 +2764,7 @@ num_floor(int argc, VALUE *argv, VALUE num) * Returns the smallest float or integer that is greater than or equal to +self+, * as specified by the given `ndigits`, * which must be an - * [integer-convertible object](rdoc-ref:implicit_conversion.rdoc@Integer-Convertible+Objects). + * {integer-convertible object}[rdoc-ref:implicit_conversion.rdoc@Integer-Convertible+Objects]. * * Equivalent to self.to_f.ceil(ndigits). *