aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
authorTony Kelman2016-06-08 08:53:11 -0700
committerMartin Afanasjew2016-06-08 17:53:11 +0200
commitfe894678322261a285ec51a27c1fb766061dee67 (patch)
tree8f4824e061f466d353cd7116516cda21ca62a265 /Library/Homebrew/exceptions.rb
parent2ca6dbbe9d94b5d295f46f7a1d3a12ade3aa3f08 (diff)
downloadbrew-fe894678322261a285ec51a27c1fb766061dee67.tar.bz2
exceptions: Remove duplicate "a" in "must be built from source" error (#339)
otherwise would get "cannot be installed as a a binary package" since `package_text` contains "a binary package" in the singular case
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
-rw-r--r--Library/Homebrew/exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index 765172e15..d755f48c4 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -400,7 +400,7 @@ class BuildToolsError < RuntimeError
super <<-EOS.undent
The following #{formula_text}:
#{formulae.join(", ")}
- cannot be installed as a #{package_text} and must be built from source.
+ cannot be installed as #{package_text} and must be built from source.
#{xcode_text}
EOS
end