Skip to content

Commit

Permalink
Update lib/irb/cmd/irb_info.rb
Browse files Browse the repository at this point in the history
Co-authored-by: Stan Lo <[email protected]>
  • Loading branch information
hahmed and st0012 authored Feb 15, 2024
1 parent dfd9ead commit f95e8fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/irb/cmd/irb_info.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def execute
rc_files = IRB.rc_files.each_with_object([]) do |rc, files|
files << rc if File.exist?(rc)
end
str += ".irbrc path: #{rc_files.join(",")}\n" if rc_files.any?
str += ".irbrc paths: #{rc_files.join(", ")}\n" if rc_files.any?
str += "RUBY_PLATFORM: #{RUBY_PLATFORM}\n"
str += "LANG env: #{ENV["LANG"]}\n" if ENV["LANG"] && !ENV["LANG"].empty?
str += "LC_ALL env: #{ENV["LC_ALL"]}\n" if ENV["LC_ALL"] && !ENV["LC_ALL"].empty?
Expand Down

0 comments on commit f95e8fe

Please sign in to comment.