Fix typo in mrblib/range.rb [ci skip]

This commit is contained in:
KOBAYASHI Shuji
2019-06-04 10:45:13 +09:00
parent 3b061a90fe
commit c75402a57b
+1 -1
View File
@@ -26,7 +26,7 @@ class Range
return self
end
if val.kind_of?(String) && last.kind_of?(String) # fixnums are special
if val.kind_of?(String) && last.kind_of?(String) # strings are special
if val.respond_to? :upto
return val.upto(last, exclude_end?, &block)
else