aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Formula-Cookbook.md
diff options
context:
space:
mode:
authorMeng Ye2016-09-29 16:59:05 +0800
committerGitHub2016-09-29 16:59:05 +0800
commitb197cd88393d5e30022d69bf819e36e6a993face (patch)
tree5c29b15f6e1386ee62a3f39579c8e70927e1c5cb /docs/Formula-Cookbook.md
parentff4636bd85b28ebf0d6a94422b76896e4606cf6a (diff)
downloadbrew-b197cd88393d5e30022d69bf819e36e6a993face.tar.bz2
fix Formula path, support macOS
Diffstat (limited to 'docs/Formula-Cookbook.md')
-rw-r--r--docs/Formula-Cookbook.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Formula-Cookbook.md b/docs/Formula-Cookbook.md
index a4fd21c57..4c7084c06 100644
--- a/docs/Formula-Cookbook.md
+++ b/docs/Formula-Cookbook.md
@@ -5,11 +5,11 @@ A formula is a package definition written in Ruby. It can be created with `brew
| Term | Description | Example |
|----------------|------------------------------------------------------------|-----------------------------------------------------------------|
-| **Formula** | The package definition | `/usr/local/Library/Taps/homebrew/homebrew-core/Formula/foo.rb` |
+| **Formula** | The package definition | `/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/foo.rb` |
| **Keg** | The installation prefix of a **Formula** | `/usr/local/Cellar/foo/0.1` |
| **opt prefix** | A symlink to the active version of a **Keg** | `/usr/local/opt/foo ` |
| **Cellar** | All **Kegs** are installed here | `/usr/local/Cellar` |
-| **Tap** | An optional Git repository of **Formulae** and/or commands | `/usr/local/Library/Taps/homebrew/homebrew-versions` |
+| **Tap** | An optional Git repository of **Formulae** and/or commands | `/usr/local/Homebrew/Library/Taps/homebrew/homebrew-versions` |
| **Bottle** | Pre-built **Keg** used instead of building from source | `qt-4.8.4.mavericks.bottle.tar.gz` |
## An Introduction