diff options
| author | Benoit Daloze | 2013-12-07 14:21:36 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-12-07 09:25:47 -0800 |
| commit | 92ed73bec818fc7af0c87c8325addbc13f7f18c5 (patch) | |
| tree | 7d58ae52e495c4628b122e1e4a35563c16abb66b /Library | |
| parent | 67aa5c8176cc4fc18107cf88d6ab03f1d8c8440d (diff) | |
| download | homebrew-92ed73bec818fc7af0c87c8325addbc13f7f18c5.tar.bz2 | |
Fix typo in example formula
Closes #25028.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Contributions/example-formula.rb | 2 |
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 |
