From c69d2005c3eafda3bf56c16ad35354fafd42c640 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 3 Apr 2008 16:04:31 +0000 Subject: * numeric.c (num_quo): RDoc updated. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'numeric.c') diff --git a/numeric.c b/numeric.c index 50cf233d71..4730e62785 100644 --- a/numeric.c +++ b/numeric.c @@ -268,6 +268,10 @@ num_fdiv(VALUE x, VALUE y) * Suppose to return most accurate division result, which * is either rational or float (if any of operands are float). * + * + * 654321.quo(13731) #=> Rational(218107, 4577) + * 654321.quo(13731.24) #=> 47.6519964693647 + * */ static VALUE @@ -2234,10 +2238,6 @@ fixdivmod(long x, long y, long *divp, long *modp) * * Returns the floating point result of dividing fix by * numeric. - * - * 654321.quo(13731) #=> Rational(218107, 4577) - * 654321.quo(13731.24) #=> xxx - * */ static VALUE -- cgit v1.2.3