diff options
author | Albert Nigmatzianov <[email protected]> | 2017-03-15 13:27:02 +0500 |
---|---|---|
committer | digitalcraftsman <[email protected]> | 2017-03-15 09:27:02 +0100 |
commit | 491d4068810bd55c39a22d7ed95801efa823ae8b (patch) | |
tree | 1034c5817cc4da2887ef31f0c75b152cfefa0bce /CONTRIBUTING.md | |
parent | d8923eb676101aeec3e2789aa13e9dc2bb13a8bb (diff) | |
download | hugo-491d4068810bd55c39a22d7ed95801efa823ae8b.tar.gz hugo-491d4068810bd55c39a22d7ed95801efa823ae8b.zip |
docs: Fix CONTRIBUTING.md
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 679a2d681..1a5004d67 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -92,10 +92,10 @@ You **must use govendor** to fetch and manage Hugo's dependencies. ### Fetch the Sources From GitHub - ``` - go get github.com/kardianos/govendor - govendor get github.com/spf13/hugo - ``` +``` +go get github.com/kardianos/govendor +govendor get github.com/spf13/hugo +``` ### Using Git Remotes @@ -154,8 +154,8 @@ If you want to stay in sync with the Hugo repository, you can easily pull down the source changes, but you'll need to keep the vendored packages up-to-date as well. - ``` - git pull - make vendor - ``` +``` +git pull +make vendor +``` |