aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems
diff options
context:
space:
mode:
authorMau Magnaguagno <maumagnaguagno@gmail.com>2023-11-21 00:59:30 -0300
committergit <svn-admin@ruby-lang.org>2023-11-24 07:26:27 +0000
commit87ddfb33a0bb7f771d4a1aee0c27c598267fb926 (patch)
treee854c4c03f6403e004adc8030bf9316a8b0415f8 /lib/rubygems
parentf792b55b2138c75bfc4efe1d15af5e924f4349bc (diff)
downloadruby-87ddfb33a0bb7f771d4a1aee0c27c598267fb926.tar.gz
[rubygems/rubygems] Fix typo missing do
https://github.com/rubygems/rubygems/commit/4eade32ad6
Diffstat (limited to 'lib/rubygems')
-rw-r--r--lib/rubygems/command.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rubygems/command.rb b/lib/rubygems/command.rb
index 14a95c7806..fd2cf61a05 100644
--- a/lib/rubygems/command.rb
+++ b/lib/rubygems/command.rb
@@ -489,7 +489,7 @@ class Gem::Command
@parser.separator nil
@parser.separator " Description:"
- formatted.each_line |line|
+ formatted.each_line do |line|
@parser.separator " #{line.rstrip}"
end
end