diff --git a/Library/Homebrew/diagnostic.rb b/Library/Homebrew/diagnostic.rb index a4845fad89f13..e3918283b6c05 100644 --- a/Library/Homebrew/diagnostic.rb +++ b/Library/Homebrew/diagnostic.rb @@ -146,15 +146,15 @@ def support_tier_message(tier:) return if tier.to_s == "1" tier_title, tier_slug, tier_issues = if tier.to_s == "unsupported" - ["Unsupported", "unsupported", "Do not report any"] + ["Unsupported", "unsupported", "Do not report any issues"] else - ["Tier #{tier}", "tier-#{tier.to_s.downcase}", "You can report Tier #{tier} unrelated"] + ["Tier #{tier}", "tier-#{tier.to_s.downcase}", "You can report issues with Tier #{tier} configurations"] end <<~EOS This is a #{tier_title} configuration: #{Formatter.url("https://docs.brew.sh/Support-Tiers##{tier_slug}")} - #{Formatter.bold("#{tier_issues} issues to Homebrew/* repositories!")} + #{Formatter.bold("#{tier_issues} to Homebrew/* repositories!")} Read the above document before opening any issues or PRs. EOS end