summaryrefslogtreecommitdiff
path: root/extending-api.md
diff options
context:
space:
mode:
authorEd Costello <epc@epcostello.com>2015-08-25 10:47:58 -0400
committerEd Costello <epc@epcostello.com>2015-08-25 10:47:58 -0400
commitb003d62099bfbaed2bf801ed16048ae3a9a57117 (patch)
treefb74eff1ee57640f7ef8e2ebb935f6e8f75dfc7f /extending-api.md
parent15509db93f1f3ac79e50bd5e18e34216cbd369c3 (diff)
Copy edits for typos (resubmitted)
Diffstat (limited to 'extending-api.md')
-rw-r--r--extending-api.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/extending-api.md b/extending-api.md
index cca257bd..bbd02a54 100644
--- a/extending-api.md
+++ b/extending-api.md
@@ -71,7 +71,7 @@ Kubernetes API server to provide the following features:
* Watch for resource changes.
The `Kind` for an instance of a third-party object (e.g. CronTab) below is expected to be
-programnatically convertible to the name of the resource using
+programmatically convertible to the name of the resource using
the following conversion. Kinds are expected to be of the form `<CamelCaseKind>`, the
`APIVersion` for the object is expected to be `<domain-name>/<api-group>/<api-version>`.
@@ -178,7 +178,7 @@ and get back:
}
```
-Because all objects are expected to contain standard Kubernetes metdata fileds, these
+Because all objects are expected to contain standard Kubernetes metadata fields, these
list operations can also use `Label` queries to filter requests down to specific subsets.
Likewise, clients can use watch endpoints to watch for changes to stored objects.