aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBenoit Daloze2013-12-07 14:21:36 +0100
committerAdam Vandenberg2013-12-07 09:25:47 -0800
commitee1d8512bf4cd6deadfa8c7a55f189cac61c221a (patch)
tree317d0000ecb9ec9bd49e9782001ad28fdda0b60d /Library
parent009541c4467ac56fbae2cd628563ca9b0f429063 (diff)
downloadbrew-ee1d8512bf4cd6deadfa8c7a55f189cac61c221a.tar.bz2
Fix typo in example formula
Closes Homebrew/homebrew#25028. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/example-formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/example-formula.rb b/Library/Contributions/example-formula.rb
index 6916ed152..f8de5aae2 100644
--- a/Library/Contributions/example-formula.rb
+++ b/Library/Contributions/example-formula.rb
@@ -254,7 +254,7 @@ class ExampleFormula < Formula
args << "--i-want-spam" if build.include? "enable-spam"
args << "--qt-gui" if build.with? "qt" # "--with-qt" ==> build.with? "qt"
args << "--some-new-stuff" if build.head? # if head is used instead of url.
- args << "--universal-binray" if build.universal?
+ args << "--universal-binary" if build.universal?
# The `build.with?` and `build.without?` are smart enough to do the
# right thing™ with respect to defaults defined via `:optional` and