summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-11 12:42:53 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-11 12:42:53 +0000
commit6c54c1f8de83e147de7e3208be3fdbb3e96cfbd3 (patch)
tree9960d166b300345dffd01f9d36f861ed1341930b /numeric.c
parent65fdc775c08b5ab406a8c7c20b7c330e76b44da6 (diff)
* 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
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/numeric.c b/numeric.c
index 00eceea3bf..e6d7ea8803 100644
--- a/numeric.c
+++ b/numeric.c
@@ -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