From 640556df39e7898ea6eae5359057be67a6686778 Mon Sep 17 00:00:00 2001 From: thibhero Date: Thu, 6 Mar 2025 23:52:12 -0500 Subject: [PATCH] correcting big space while displaying --- Library/Homebrew/install.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb index c7a0b41aff..eea3f6fa9d 100644 --- a/Library/Homebrew/install.rb +++ b/Library/Homebrew/install.rb @@ -335,8 +335,8 @@ module Homebrew sizes = compute_total_sizes(sized_formulae, debug: args.debug?) puts "#{::Utils.pluralize("Formul", sized_formulae.count, plural: "ae", - singular: "a")} (#{sized_formulae.count}): \ - #{sized_formulae.join(", ")}\n\n" + singular: "a")} \ +(#{sized_formulae.count}): #{sized_formulae.join(", ")}\n\n" puts "Download Size: #{disk_usage_readable(sizes[:download])}" puts "Install Size: #{disk_usage_readable(sizes[:installed])}" puts "Net Install Size: #{disk_usage_readable(sizes[:net])}" if sizes[:net] != 0