summaryrefslogtreecommitdiff
path: root/development.md
diff options
context:
space:
mode:
authorAlex Robinson <arob@google.com>2015-07-20 13:45:36 -0700
committerAlex Robinson <arob@google.com>2015-07-20 14:39:36 -0700
commite0554bbf167b4c0d315fda4a3ddd9511460064c1 (patch)
treef55fb128d5185542059a699b84af4ceb3176e17e /development.md
parent4ebeb731ad8c73ebd05b63c160c033ced6904505 (diff)
Fix capitalization of Kubernetes in the documentation.
Diffstat (limited to 'development.md')
-rw-r--r--development.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/development.md b/development.md
index f5233a0e..27cb034d 100644
--- a/development.md
+++ b/development.md
@@ -56,7 +56,7 @@ Below, we outline one of the more common git workflows that core developers use.
### Clone your fork
-The commands below require that you have $GOPATH set ([$GOPATH docs](https://golang.org/doc/code.html#GOPATH)). We highly recommend you put kubernetes' code into your GOPATH. Note: the commands below will not work if there is more than one directory in your `$GOPATH`.
+The commands below require that you have $GOPATH set ([$GOPATH docs](https://golang.org/doc/code.html#GOPATH)). We highly recommend you put Kubernetes' code into your GOPATH. Note: the commands below will not work if there is more than one directory in your `$GOPATH`.
```sh
mkdir -p $GOPATH/src/github.com/GoogleCloudPlatform/
@@ -207,7 +207,7 @@ godep go test ./...
If you only want to run unit tests in one package, you could run ``godep go test`` under the package directory. For example, the following commands will run all unit tests in package kubelet:
```console
-$ cd kubernetes # step into kubernetes' directory.
+$ cd kubernetes # step into the kubernetes directory.
$ cd pkg/kubelet
$ godep go test
# some output from unit tests