From 96827ee537354ca76588297cd4033642ded6251d Mon Sep 17 00:00:00 2001 From: stomar Date: Sat, 14 Apr 2018 16:43:42 +0000 Subject: [PATCH] complex.c: improve docs for Complex#{finite?,infinite?} * complex.c: [DOC] correct term "real value" to "real part", and same for imaginary part, in documentation for Complex#{finite?,infinite?}. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63152 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- complex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/complex.c b/complex.c index 7400dea5d2..e9bfc02f7a 100644 --- a/complex.c +++ b/complex.c @@ -1255,7 +1255,7 @@ nucomp_inspect(VALUE self) * call-seq: * cmp.finite? -> true or false * - * Returns +true+ if +cmp+'s real and imaginary values are both finite numbers, + * Returns +true+ if +cmp+'s real and imaginary parts are both finite numbers, * otherwise returns +false+. */ static VALUE @@ -1273,7 +1273,7 @@ rb_complex_finite_p(VALUE self) * call-seq: * cmp.infinite? -> nil or 1 * - * Returns +1+ if +cmp+'s real or imaginary value is an infinite number, + * Returns +1+ if +cmp+'s real or imaginary part is an infinite number, * otherwise returns +nil+. * * For example: