summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-03-29 15:14:21 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-03-29 15:14:21 +0900
commitf16b9e7f268dc5abd649c95b710c964448982574 (patch)
tree6e06c8a669882d149c0324df83f1712e208a3179
parentf46bbb2e99b8c1df6a62756967b40de36039916b (diff)
sync_default_gems.rb: IO#puts prints a newline between each argument [ci skip]
-rw-r--r--tool/sync_default_gems.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index 5b64c83f8c..935b9ef0d7 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -402,7 +402,7 @@ def sync_default_gems_with_commits(gem, ranges, edit: nil)
end
puts "Try to pick these commits:"
- puts commits.map{|commit| commit.join(": ")}.join("\n")
+ puts commits.map{|commit| commit.join(": ")}
puts "----"
failed_commits = []