diff --git a/numeric.c b/numeric.c
index deeeaf42dc..02a3da6c43 100644
--- a/numeric.c
+++ b/numeric.c
@@ -1370,7 +1370,7 @@ flo_ceil(VALUE num)
*
* Rounds flt to a given precision in decimal digits (default 0 digits).
* Precision may be negative. Returns a floating point number when ndigits
- * is more than one.
+ * is more than zero.
*
* 1.4.round #=> 1
* 1.5.round #=> 2
@@ -1502,7 +1502,7 @@ num_ceil(VALUE num)
*
* Rounds num to a given precision in decimal digits (default 0 digits).
* Precision may be negative. Returns a floating point number when ndigits
- * is more than one. Numeric
implements this by converting itself
+ * is more than zero. Numeric
implements this by converting itself
* to a Float
and invoking Float#round
.
*/