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
This commit is contained in:
Tony Kelman 2016-06-08 08:53:11 -07:00 committed by Martin Afanasjew
parent 2ca6dbbe9d
commit fe89467832

View File

@ -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