mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
0cd595cb47
commit
96827ee537
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue