diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index cfe47fae8d..d3677fc624 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -11,10 +11,11 @@ module Homebrew Homebrew::CLI::Parser.new do description <<~EOS Check your system for potential problems. Will exit with a non-zero status - if any potential problems are found. Please note that these warnings are just - used to help the Homebrew maintainers with debugging if you file an issue. If - everything you use Homebrew for is working fine: please don't worry or file - an issue; just ignore this. + if any potential problems are found. + + Please note that these warnings are just used to help the Homebrew maintainers + with debugging if you file an issue. If everything you use Homebrew for + is working fine: please don't worry or file an issue; just ignore this. EOS switch "--list-checks", description: "List all audit methods, which can be run individually " \ diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index c85010d630..ca7ac0f28b 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -25,7 +25,6 @@ module Homebrew Homebrew::CLI::Parser.new do description <<~EOS Display brief statistics for your Homebrew installation. - If a or is provided, show summary of information about it. EOS switch "--analytics", diff --git a/Library/Homebrew/cmd/link.rb b/Library/Homebrew/cmd/link.rb index 3b6520e91c..78e829662d 100644 --- a/Library/Homebrew/cmd/link.rb +++ b/Library/Homebrew/cmd/link.rb @@ -12,9 +12,9 @@ module Homebrew def link_args Homebrew::CLI::Parser.new do description <<~EOS - Symlink all of 's installed files into Homebrew's prefix. This - is done automatically when you install formulae but can be useful for DIY - installations. + Symlink all of 's installed files into Homebrew's prefix. + This is done automatically when you install formulae but can be useful + for manual installations. EOS switch "--overwrite", description: "Delete files that already exist in the prefix while linking." diff --git a/Library/Homebrew/cmd/list.rb b/Library/Homebrew/cmd/list.rb index 3d9b28e662..819af57cef 100644 --- a/Library/Homebrew/cmd/list.rb +++ b/Library/Homebrew/cmd/list.rb @@ -14,7 +14,6 @@ module Homebrew Homebrew::CLI::Parser.new do description <<~EOS List all installed formulae and casks. - If is provided, summarise the paths within its current keg. If is provided, list its artifacts. EOS diff --git a/Library/Homebrew/cmd/tap-info.rb b/Library/Homebrew/cmd/tap-info.rb index 281db2a6c1..ce1e5255d4 100644 --- a/Library/Homebrew/cmd/tap-info.rb +++ b/Library/Homebrew/cmd/tap-info.rb @@ -11,7 +11,6 @@ module Homebrew Homebrew::CLI::Parser.new do description <<~EOS Show detailed information about one or more s. - If no names are provided, display brief statistics for all installed taps. EOS switch "--installed", diff --git a/Library/Homebrew/cmd/tap.rb b/Library/Homebrew/cmd/tap.rb index d510e964b4..91897bb5da 100644 --- a/Library/Homebrew/cmd/tap.rb +++ b/Library/Homebrew/cmd/tap.rb @@ -12,7 +12,6 @@ module Homebrew usage_banner "`tap` [] [`/`] []" description <<~EOS Tap a formula repository. - If no arguments are provided, list all installed taps. With unspecified, tap a formula repository from GitHub using HTTPS. diff --git a/Library/Homebrew/dev-cmd/livecheck.rb b/Library/Homebrew/dev-cmd/livecheck.rb index f797dfc820..3725c98381 100644 --- a/Library/Homebrew/dev-cmd/livecheck.rb +++ b/Library/Homebrew/dev-cmd/livecheck.rb @@ -14,7 +14,6 @@ module Homebrew Homebrew::CLI::Parser.new do description <<~EOS Check for newer versions of formulae and/or casks from upstream. - If no formula or cask argument is passed, the list of formulae and casks to check is taken from `HOMEBREW_LIVECHECK_WATCHLIST` or `~/.homebrew/livecheck_watchlist.txt`.