aboutsummaryrefslogtreecommitdiffstats
path: root/lib/weakref.rb
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
commit25c0c1cc1c673bf480585f4d8fd18c8da0f75317 (patch)
treecf6ed87495ce548d258953ef12c27cfec88e03ea /lib/weakref.rb
parent2402a76f65b5ffdb99bce202bdb6b0366e54716c (diff)
downloadruby-25c0c1cc1c673bf480585f4d8fd18c8da0f75317.tar.gz
[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/weakref.rb')
-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