aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-21 17:42:37 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-21 17:42:37 +0000
commit52999632d78f6ee8d30496e04a595ceaf9ed3ff0 (patch)
tree8ac01970396a5ffed1f26f9a246ffefc0e1bea43
parentae86e1523007a271a8099ab8fdb06b3eb522a1bc (diff)
downloadruby-52999632d78f6ee8d30496e04a595ceaf9ed3ff0.tar.gz
* ext/bigdecimal/bigdecimal.c (BigDecimal_remainder): Doc fix [ruby-core:18796]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/bigdecimal/bigdecimal.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c
index de18b83784..97d1822e0d 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -1148,10 +1148,7 @@ BigDecimal_divremain(VALUE self, VALUE r, Real **dv, Real **rv)
/* Returns the remainder from dividing by the value.
*
- * If the values divided are of the same sign, the remainder is the same as
- * the modulus (see divmod).
- *
- * Otherwise, the remainder is the modulus minus the value divided by.
+ * x.remainder(y) means x-y*(x/y).truncate
*/
static VALUE
BigDecimal_remainder(VALUE self, VALUE r) /* remainder */