From 96983ee4efe211497a34d3eb78f96c3eb16fda6a Mon Sep 17 00:00:00 2001 From: thibhero Date: Fri, 7 Mar 2025 16:21:05 -0500 Subject: [PATCH] Specifying the plural of formula --- Library/Homebrew/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb index 40503f6783..1f14cbd211 100644 --- a/Library/Homebrew/install.rb +++ b/Library/Homebrew/install.rb @@ -334,7 +334,7 @@ module Homebrew sized_formulae = compute_sized_formulae(formulae, args: args) sizes = compute_total_sizes(sized_formulae, debug: args.debug?) - puts "#{::Utils.pluralize("Formul", sized_formulae.count, plural: "ae")} \ + puts "#{::Utils.pluralize("Formula", sized_formulae.count, plural: "e")} \ (#{sized_formulae.count}): #{sized_formulae.join(", ")}\n\n" puts "Download Size: #{disk_usage_readable(sizes[:download])}" puts "Install Size: #{disk_usage_readable(sizes[:installed])}"