Merge pull request #10206 from psobolewskiPhD/patch-1

Correct Formula Cookbook (missing ?)
This commit is contained in:
Rylan Polster 2021-01-04 11:53:40 -05:00 committed by GitHub
commit 7eca0d77cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -414,7 +414,7 @@ Three commands are provided for displaying informational messages to the user:
In particular, when a test needs to be performed before installation use `odie` to bail out gracefully. For example:
```ruby
if build.with?("qt") && build.with("qt5")
if build.with?("qt") && build.with?("qt5")
odie "Options --with-qt and --with-qt5 are mutually exclusive."
end
system "make", "install"