diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-09-08 04:57:49 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-09-08 04:57:49 +0000 |
commit | 577de1e93dac9adf321602517c5ab80884911566 (patch) | |
tree | 1e398fa2e3637208d3e0850ede9f07000d235af7 /struct.c | |
parent | bbd662c8bd85e44957c96d40e4291631554c9b5b (diff) | |
download | ruby-577de1e93dac9adf321602517c5ab80884911566.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 'struct.c')
-rw-r--r-- | struct.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1044,7 +1044,7 @@ rb_struct_equal(VALUE s, VALUE s2) /* * call-seq: - * struct.hash -> fixnum + * struct.hash -> integer * * Returns a hash value based on this struct's contents (see Object#hash). * @@ -1110,8 +1110,8 @@ rb_struct_eql(VALUE s, VALUE s2) /* * call-seq: - * struct.length -> fixnum - * struct.size -> fixnum + * struct.length -> integer + * struct.size -> integer * * Returns the number of struct members. * |