aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKouhei Yanagita <yanagi@shakenbu.org>2022-05-28 06:04:02 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-06-03 14:35:47 +0900
commita4721ec6cdd32b9c23a009e7390fefa1d9148ffd (patch)
tree95e314d34400e0be4b4c7d9198d998ca77675f63
parent512d8a25e963deef927b2445f8eacbe51b4e9587 (diff)
downloadruby-a4721ec6cdd32b9c23a009e7390fefa1d9148ffd.tar.gz
[DOC] Fix documentation of Numeric#div: Complex does not have #div
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index 4e08c4767a..1b1c8d99b9 100644
--- a/numeric.c
+++ b/numeric.c
@@ -645,7 +645,7 @@ num_fdiv(VALUE x, VALUE y)
* (\Numeric itself does not define method +/+.)
*
* Of the Core and Standard Library classes,
- * Float, Rational, and Complex use this implementation.
+ * Only Float and Rational use this implementation.
*
*/