Remove unnecessary ruby version comments [ci skip]

This commit is contained in:
Vipul A M 2017-03-24 17:59:49 +05:30
parent 2f3e12b823
commit c07cc2986c
No known key found for this signature in database
GPG Key ID: 4C9362FE1F574587

@ -128,7 +128,7 @@ class Complex
Complex(1).dup
rescue TypeError
# Complexes are not duplicable for RUBY_VERSION < 2.5.0:
# Complexes are not duplicable:
#
# Complex(1).duplicable? # => false
# Complex(1).dup # => TypeError: can't copy Complex
@ -143,7 +143,7 @@ class Rational
Rational(1).dup
rescue TypeError
# Rationals are not duplicable for RUBY_VERSION < 2.5.0:
# Rationals are not duplicable:
#
# Rational(1).duplicable? # => false
# Rational(1).dup # => TypeError: can't copy Rational