aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 13:05:22 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 13:05:22 +0000
commit9689b1cd75b453b7342a2160e364f667cb41158a (patch)
tree4953046be16d307e110e4b916811463b0c854aa1 /numeric.c
parentb841f31caae57f90c92b7543cf64d38a4881cce1 (diff)
downloadruby-9689b1cd75b453b7342a2160e364f667cb41158a.tar.gz
[DOC]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index 15621ce96c..a357c3af3c 100644
--- a/numeric.c
+++ b/numeric.c
@@ -3809,7 +3809,7 @@ int_equal(VALUE x, VALUE y)
* call-seq:
* int <=> numeric -> -1, 0, +1 or nil
*
- * Comparison---Returns +-1+, +0+, ++1+ or +nil+ depending on whether +fix+ is
+ * Comparison---Returns +-1+, +0+, ++1+ or +nil+ depending on whether +int+ is
* less than, equal to, or greater than +numeric+.
*
* This is the basis for the tests in the Comparable module.