summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-26 15:14:02 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-26 15:14:02 +0000
commitc71e1223c5a91ef51d5efbdb9de13e0af04bcf4a (patch)
treecf6ed87495ce548d258953ef12c27cfec88e03ea /lib
parent8eeadfe06eb8a5b026270b1ef4ec050267f636fc (diff)
[DOC] Use Integer instead of Fixnum [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/weakref.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/weakref.rb b/lib/weakref.rb
index d4ffa65395..c88babba46 100644
--- a/lib/weakref.rb
+++ b/lib/weakref.rb
@@ -78,7 +78,7 @@ class WeakRef < Delegator
# Creates a weak reference to +orig+
#
# Raises an ArgumentError if the given +orig+ is immutable, such as Symbol,
- # Fixnum, or Float.
+ # Integer, or Float.
def initialize(orig)
case orig