summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-01-24 13:08:31 -0800
committerGitHub <noreply@github.com>2018-01-24 13:08:31 -0800
commite038c259b12e4cf6615ed57a2816d6da402a0d89 (patch)
treeca00eb9f186dccc6bd7fb2535624b75c016e7608
parent41ee3d5644dbdeef0865aca86c45eafeb9011616 (diff)
parent8a6ff192957c32e3662e1f6f36dac80de3f76f43 (diff)
Merge pull request #1670 from g-harel/typos
fixed typo and missing link
-rw-r--r--contributors/devel/testing.md2
-rw-r--r--contributors/guide/github-workflow.md2
2 files changed, 3 insertions, 1 deletions
diff --git a/contributors/devel/testing.md b/contributors/devel/testing.md
index fbd465ca..340132d8 100644
--- a/contributors/devel/testing.md
+++ b/contributors/devel/testing.md
@@ -192,7 +192,7 @@ for those internal etcd instances with the `TEST_ETCD_DIR` environment variable.
### Run integration tests
The integration tests are run using `make test-integration`.
-The Kubernetes integration tests are writting using the normal golang testing
+The Kubernetes integration tests are written using the normal golang testing
package but expect to have a running etcd instance to connect to. The `test-integration.sh`
script wraps `make test` and sets up an etcd instance for the integration tests to use.
diff --git a/contributors/guide/github-workflow.md b/contributors/guide/github-workflow.md
index f3b77090..c96e4e7d 100644
--- a/contributors/guide/github-workflow.md
+++ b/contributors/guide/github-workflow.md
@@ -12,6 +12,8 @@
Per Go's [workspace instructions][go-workspace], place Kubernetes' code on your
`GOPATH` using the following cloning procedure.
+[go-workspace]: https://golang.org/doc/code.html#Workspaces
+
Define a local working directory:
```sh