From 004cec60b36aada1376b3003f72f1dd0489009da Mon Sep 17 00:00:00 2001 From: Brian Hahn Date: Wed, 22 Jun 2016 15:37:44 -0700 Subject: [PATCH] fix readme numbered indentation (#7277) --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index afc0617119..547fbaab0b 100644 --- a/README.md +++ b/README.md @@ -83,15 +83,15 @@ Assuming your work is on a branch called `my-feature-branch`, the steps look lik 1. Add the new package to your GOPATH: -```bash -go get github.com/hashicorp/my-project -``` + ```bash + go get github.com/hashicorp/my-project + ``` 2. Add the new package to your vendor/ directory: -```bash -govendor add github.com/hashicorp/my-project/package -``` + ```bash + govendor add github.com/hashicorp/my-project/package + ``` 3. Review the changes in git and commit them. @@ -101,9 +101,9 @@ To update a dependency: 1. Fetch the dependency: -```bash -govendor fetch github.com/hashicorp/my-project -``` + ```bash + govendor fetch github.com/hashicorp/my-project + ``` 2. Review the changes in git and commit them.