Merge pull request #2038 from pnowaczyk/docs_fix

small docs fixes
This commit is contained in:
bgrant0607 2014-10-28 16:01:28 -07:00
commit 254dbaa361
2 changed files with 5 additions and 5 deletions

View File

@ -62,9 +62,9 @@ Before committing any changes, please link/copy these hooks into your .git
directory. This will keep you from accidentally committing non-gofmt'd go code. directory. This will keep you from accidentally committing non-gofmt'd go code.
``` ```
cd kubernetes cd kubernetes/.git/hooks/
ln -s hooks/prepare-commit-msg .git/hooks/prepare-commit-msg ln -s ../../hooks/prepare-commit-msg .
ln -s hooks/commit-msg .git/hooks/commit-msg ln -s ../../hooks/commit-msg .
``` ```
## Unit tests ## Unit tests

View File

@ -226,7 +226,7 @@ myNginx dockerfile/nginx replicationController=myNginx 3
``` ```
We did not start any services, hence there is none listed. But we see three replicas displayed properly. We did not start any services, hence there is none listed. But we see three replicas displayed properly.
Check the [guestbook](examples/guestbook/README.md) application to learn how to create a service. Check the [guestbook](../../examples/guestbook/README.md) application to learn how to create a service.
You can already play with resizing the replicas with: You can already play with resizing the replicas with:
``` ```