aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/numeric.c b/numeric.c
index b6ab927354..95444b3b63 100644
--- a/numeric.c
+++ b/numeric.c
@@ -3416,6 +3416,15 @@ int_fdiv(VALUE x, VALUE y)
return Qnil;
}
+/*
+ * Document-method: Fixnum#/
+ * call-seq:
+ * fix / numeric -> numeric_result
+ *
+ * Performs division: the class of the resulting object depends on the class of
+ * +numeric+ and on the magnitude of the result. It may return a Bignum.
+ */
+
static VALUE
fix_divide(VALUE x, VALUE y, ID op)
{
@@ -3450,15 +3459,6 @@ fix_divide(VALUE x, VALUE y, ID op)
}
}
-/*
- * Document-method: Fixnum#/
- * call-seq:
- * fix / numeric -> numeric_result
- *
- * Performs division: the class of the resulting object depends on the class of
- * +numeric+ and on the magnitude of the result. It may return a Bignum.
- */
-
static VALUE
fix_div(VALUE x, VALUE y)
{