summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-02-11 13:59:34 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-02-11 13:59:34 +0000
commit36ff32040e6dceb8c3a6a67b11e663db6dcd6f06 (patch)
tree9b17e916174c156390da87752940c56b25036535 /numeric.c
parent1ad8521d44de917e759ff9d77d39f6f3f55215f5 (diff)
fix rdoc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c4
1 files changed, 2 insertions, 2 deletions
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 <i>flt</i> 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 <i>num</i> 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. <code>Numeric</code> implements this by converting itself
+ * is more than zero. <code>Numeric</code> implements this by converting itself
* to a <code>Float</code> and invoking <code>Float#round</code>.
*/