aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Reiter2018-02-13 18:10:23 +0100
committerGitHub2018-02-13 18:10:23 +0100
commitc09a0972e5ca06a501d2315f38b06e039276c11b (patch)
tree0029e4460038641437e4a19e83b9d10b7d1c6623
parent8a30be74424538aeec3139f1d06bdbb7b38e75b7 (diff)
parent14a25bdd693236f82082c0b67058e7b2c9265c29 (diff)
downloadbrew-c09a0972e5ca06a501d2315f38b06e039276c11b.tar.bz2
Merge pull request #3774 from sbol-coolblue/fix-formula-formulae
Grammar: "formula are" -> "formulae are"
-rw-r--r--Library/Homebrew/diagnostic.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/diagnostic.rb b/Library/Homebrew/diagnostic.rb
index d1de5ab00..8cbf124e6 100644
--- a/Library/Homebrew/diagnostic.rb
+++ b/Library/Homebrew/diagnostic.rb
@@ -822,7 +822,7 @@ module Homebrew
return if linked.empty?
inject_file_list linked.map(&:full_name), <<~EOS
- Some keg-only formula are linked into the Cellar.
+ Some keg-only formulae are linked into the Cellar.
Linking a keg-only formula, such as gettext, into the cellar with
`brew link <formula>` will cause other formulae to detect them during
the `./configure` step. This may cause problems when compiling those
@@ -872,7 +872,7 @@ module Homebrew
return if missing.empty?
<<~EOS
- Some installed formula are missing dependencies.
+ Some installed formulae are missing dependencies.
You should `brew install` the missing dependencies:
brew install #{missing.sort_by(&:full_name) * " "}