aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDavid Broder-Rodgers2016-12-10 14:25:35 +0000
committerDavid Broder-Rodgers2016-12-10 14:25:35 +0000
commit51e10315b799cde41c95b2018bc35ebaf5739fc5 (patch)
treecdecb02b8f2b4ce7ba6b3901d34ed2da1e15085f /docs
parentb83ffd53e3405879f4e7c3f63d17e11e15e8e02b (diff)
downloadbrew-51e10315b799cde41c95b2018bc35ebaf5739fc5.tar.bz2
Markup for PR guide
Diffstat (limited to 'docs')
-rw-r--r--docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md b/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md
index 752b629c5..a3497abca 100644
--- a/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md
+++ b/docs/How-To-Open-a-Homebrew-Pull-Request-(and-get-it-merged).md
@@ -31,8 +31,7 @@ To make a new branch and submit it for review, create a GitHub pull request with
1. Check out the `master` branch with `git checkout master`.
2. Retrieve new changes to the `master` branch with `brew update`.
3. Create a new branch from the latest `master` branch with `git checkout -b <YOUR_BRANCH_NAME> origin/master`.
-4. Make your changes.
- * For formulae, use `brew edit` or your favorite text editor, following all the guidelines in the [Formula Cookbook](Formula-Cookbook.md).
+4. Make your changes. For formulae, use `brew edit` or your favorite text editor, following all the guidelines in the [Formula Cookbook](Formula-Cookbook.md).
* If there's a `bottle do` block in the formula: don't remove or change it; we'll update it when we pull your PR.
5. Test your changes by doing the following, and ensure they all pass without issue. For changed formulae, make sure you do the `brew audit` step while your changed formula is installed.
1. `brew tests`