summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2021-01-08 13:31:35 +0900
committeraycabta <aycabta@gmail.com>2021-01-08 13:32:10 +0900
commit6cbb3fd142d980f3921c411d0502132009f4333d (patch)
treec841709c609c7bea6fadb704d5ac05cab9865683
parenta8f4cbeece5c30587536e456365c28d829bb1a95 (diff)
[ruby/irb] Fix comment, irb gem supports 2.5.0 or older
https://github.com/ruby/irb/commit/36118015ba
-rw-r--r--lib/irb.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb.rb b/lib/irb.rb
index db1b98ef99..cf53130751 100644
--- a/lib/irb.rb
+++ b/lib/irb.rb
@@ -624,7 +624,7 @@ module IRB
message = exc.full_message(order: :top)
order = :top
end
- else # RUBY_VERSION < '2.5.0' || '3.0.0' <= RUBY_VERSION
+ else # '3.0.0' <= RUBY_VERSION
message = exc.full_message(order: :top)
order = :top
end