aboutsummaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-08 04:57:49 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-08 04:57:49 +0000
commit79c2d2fb510a67de0f55897080ff59e83556a95f (patch)
tree1e398fa2e3637208d3e0850ede9f07000d235af7 /hash.c
parent02eab00b30bcc74c989804fde466c704c19aa138 (diff)
downloadruby-79c2d2fb510a67de0f55897080ff59e83556a95f.tar.gz
replace fixnum by integer in documents.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hash.c b/hash.c
index 52a7f235f4..8ff6d1b94b 100644
--- a/hash.c
+++ b/hash.c
@@ -1639,8 +1639,8 @@ rb_hash_replace(VALUE hash, VALUE hash2)
/*
* call-seq:
- * hsh.length -> fixnum
- * hsh.size -> fixnum
+ * hsh.length -> integer
+ * hsh.size -> integer
*
* Returns the number of key-value pairs in the hash.
*
@@ -2256,7 +2256,7 @@ hash_i(VALUE key, VALUE val, VALUE arg)
/*
* call-seq:
- * hsh.hash -> fixnum
+ * hsh.hash -> integer
*
* Compute a hash-code for this hash. Two hashes with the same content
* will have the same hash code (and will compare using <code>eql?</code>).