mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* numeric.c (num_divmod): fixed rdoc. [ruby-core:24862]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@24498 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
65fdc775c0
commit
6c54c1f8de
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Aug 11 21:42:46 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* numeric.c (num_divmod): fixed rdoc. [ruby-core:24862]
|
||||
|
||||
Tue Aug 11 13:59:25 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* io.c (rb_sysopen): workaround for MSVCRT's bug.
|
||||
|
|
|
@ -318,7 +318,7 @@ num_div(x, y)
|
|||
* ------+-----+---------------+---------+-------------+---------------
|
||||
* 13 | 4 | 3, 1 | 3 | 1 | 1
|
||||
* ------+-----+---------------+---------+-------------+---------------
|
||||
* 13 | -4 | -4, -3 | -3 | -3 | 1
|
||||
* 13 | -4 | -4, -3 | -4 | -3 | 1
|
||||
* ------+-----+---------------+---------+-------------+---------------
|
||||
* -13 | 4 | -4, 3 | -4 | 3 | -1
|
||||
* ------+-----+---------------+---------+-------------+---------------
|
||||
|
@ -330,7 +330,7 @@ num_div(x, y)
|
|||
* ------+-----+---------------+---------+-------------+---------------
|
||||
* -11.5 | 4 | -3, 0.5 | -2.875 | 0.5 | -3.5
|
||||
* ------+-----+---------------+---------+-------------+---------------
|
||||
* -11.5 | -4 | 2 -3.5 | 2.875 | -3.5 | -3.5
|
||||
* -11.5 | -4 | 2, -3.5 | 2.875 | -3.5 | -3.5
|
||||
*
|
||||
*
|
||||
* Examples
|
||||
|
|
Loading…
Add table
Reference in a new issue