Copy edits to remove doubled words

This commit is contained in:
Ed Costello
2015-07-13 10:11:07 -04:00
parent 0c5b97627c
commit 2b941634d8
13 changed files with 19 additions and 19 deletions

View File

@@ -177,7 +177,7 @@ need to add cases to `pkg/api/<version>/defaults.go`. Of course, since you
have added code, you have to add a test: `pkg/api/<version>/defaults_test.go`.
Do use pointers to scalars when you need to distinguish between an unset value
and an an automatic zero value. For example,
and an automatic zero value. For example,
`PodSpec.TerminationGracePeriodSeconds` is defined as `*int64` the go type
definition. A zero value means 0 seconds, and a nil value asks the system to
pick a default.