aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2016-08-19 16:08:23 +0100
committerGitHub2016-08-19 16:08:23 +0100
commit721b218fd2eb6b4cced4ee09e8a02c725cb77754 (patch)
tree2b00e7a640474efa6ba15d33438ddee9dfda065c
parent105d7aa5346553408281ca8f7c4eeb02ea8a7c3f (diff)
parent22ca107f77635babb2856f79fa4e76b3cd8a5b3b (diff)
downloadbrew-721b218fd2eb6b4cced4ee09e8a02c725cb77754.tar.bz2
Merge pull request #756 from MikeMcQuaid/formula-cookbook-head-branch-default
Formula-Cookbook: document head branch default.
-rw-r--r--share/doc/homebrew/Formula-Cookbook.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/doc/homebrew/Formula-Cookbook.md b/share/doc/homebrew/Formula-Cookbook.md
index 1772fbd4f..e9bf682a1 100644
--- a/share/doc/homebrew/Formula-Cookbook.md
+++ b/share/doc/homebrew/Formula-Cookbook.md
@@ -524,7 +524,7 @@ To use a specific commit, tag, or branch from a repository, specify [`head`](htt
```ruby
class Foo < Formula
head "https://github.com/some/package.git", :revision => "090930930295adslfknsdfsdaffnasd13"
- # or :branch => "develop"
+ # or :branch => "develop" (the default is "master")
# or :tag => "1_0_release",
# :revision => "090930930295adslfknsdfsdaffnasd13"
end