aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Krall2015-10-30 22:43:39 -0400
committerDominyk Tiller2015-10-31 15:45:21 +0000
commit6d57b3f4b936065fa291cc10024f3fe2d62a406a (patch)
tree61b09609451ba5e8a9bc899d6cca887b75d37996
parentd7a479f55105f277ce96ad1b4385679c93618add (diff)
downloadbrew-6d57b3f4b936065fa291cc10024f3fe2d62a406a.tar.bz2
Formula cookbook: PolarSSL was renamed to mbedtls
See 29bc61e9163e43931ff4736fa3cefaff1918f153 Closes Homebrew/homebrew#45533. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
-rw-r--r--share/doc/homebrew/Formula-Cookbook.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/doc/homebrew/Formula-Cookbook.md b/share/doc/homebrew/Formula-Cookbook.md
index d5ad7a124..ac6f8a85e 100644
--- a/share/doc/homebrew/Formula-Cookbook.md
+++ b/share/doc/homebrew/Formula-Cookbook.md
@@ -209,9 +209,9 @@ A Hash specifies a formula dependency with some additional information. Given a
Sometimes there’s hard conflict between formulae, and it can’t be avoided or circumvented with `keg_only`.
-PolarSSL is a good [example](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/polarssl.rb) formula for minor conflict.
+`mbedtls` is a good [example](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/mbedtls.rb) formula for minor conflict.
-PolarSSL ship and compile a "Hello World" executable. This is obviously non-essential to PolarSSL’s functionality, and conflict with the popular GNU `hello` formula would be overkill, so we just remove it.
+`mbedtls` ships and compiles a "Hello World" executable. This is obviously non-essential to `mbedtls`’s functionality, and conflict with the popular GNU `hello` formula would be overkill, so we just remove it.
[pdftohtml](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/pdftohtml.rb) provides an example of a serious
conflict, where both formula ship a identically-named binary that is essential to functionality, so a `conflicts_with` is preferable.