summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/numeric.c b/numeric.c
index 46b2e8cf17..4238e0b2ad 100644
--- a/numeric.c
+++ b/numeric.c
@@ -1602,7 +1602,7 @@ num_ceil(VALUE num)
* num.round([ndigits]) -> integer or float
*
* Rounds <i>num</i> to a given precision in decimal digits (default 0 digits).
- * Precision may be negative. Returns a floating point number when ndigits
+ * Precision may be negative. Returns a floating point number when <i>ndigits</i>
* is more than zero. <code>Numeric</code> implements this by converting itself
* to a <code>Float</code> and invoking <code>Float#round</code>.
*/
@@ -2031,7 +2031,6 @@ rb_num2ull(VALUE val)
* int.to_int -> integer
* int.floor -> integer
* int.ceil -> integer
- * int.round -> integer
* int.truncate -> integer
*
* As <i>int</i> is already an <code>Integer</code>, all these
@@ -3283,7 +3282,7 @@ int_dotimes(VALUE num)
/*
* call-seq:
- * num.round([ndigits]) -> integer or float
+ * int.round([ndigits]) -> integer or float
*
* Rounds <i>flt</i> to a given precision in decimal digits (default 0 digits).
* Precision may be negative. Returns a floating point number when +ndigits+