Fix typo in example formula

Closes Homebrew/homebrew#25028.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Benoit Daloze 2013-12-07 14:21:36 +01:00 committed by Adam Vandenberg
parent 009541c446
commit ee1d8512bf

View File

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