summaryrefslogtreecommitdiff
path: root/api_changes.md
diff options
context:
space:
mode:
authorEd Costello <epc@epcostello.com>2015-07-13 10:11:07 -0400
committerEd Costello <epc@epcostello.com>2015-07-13 10:11:55 -0400
commit5b891f610132f670f1a2bc4cbdbf53ef05180c25 (patch)
treeac302b5ab8cb1d159638761b3ba50e1dcf89bdff /api_changes.md
parenta284d4cf980e30a237d170cd77b8f50c8b251c3b (diff)
Copy edits to remove doubled words
Diffstat (limited to 'api_changes.md')
-rw-r--r--api_changes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/api_changes.md b/api_changes.md
index 17278c6e..de073677 100644
--- a/api_changes.md
+++ b/api_changes.md
@@ -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.