Merge pull request #2160 from nishanttotla/fix-typo-contributing

Fix typo in CONTRIBUTING.md
This commit is contained in:
Alexandre Beslic 2016-04-24 16:04:40 -07:00
commit 0524ead8da
1 changed files with 3 additions and 3 deletions

View File

@ -95,8 +95,8 @@ git remote set-url --push upstream no-pushing
You can check your configuration like this:
```sh
$ git remote -v
origin https://github.com/mgoelzer/swarm.git (fetch)
origin https://github.com/mgoelzer/swarm.git (push)
origin https://github.com/<username>/swarm.git (fetch)
origin https://github.com/<username>/swarm.git (push)
upstream https://github.com/docker/swarm.git (fetch)
upstream no-pushing (push)
```
@ -121,7 +121,7 @@ Build the binary, installing it to `$GOPATH/bin/swarm`:
cd $GOPATH/src/github.com/docker/swarm
go install .
```
Run the binary you just created:
```sh