Skip to content

Commit b55b522

Browse files
cfellin1silasbw
authored andcommittedAug 1, 2018
docs(readme): remove readme typos (#301)
1 parent ea67253 commit b55b522

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const deployment = await client.apis.apps.v1.namespaces('default').deployments(d
106106
and finally, remove the Deployment:
107107

108108
```js
109-
await await client.apis.apps.v1.namespaces('default').deployments(deploymentManifest.metadata.name).delete();
109+
await client.apis.apps.v1.namespaces('default').deployments(deploymentManifest.metadata.name).delete();
110110
```
111111

112112
kubernetes-client supports `.delete`, `.get`, `.patch`, `.post`, and `.put`.
@@ -132,11 +132,11 @@ specifications:
132132
[sync-client-version.js](./examples/sync-client-version.js)
133133
* Using resource aliases supported by `kubectl` (*e.g.*, `.po` vs
134134
`.pods`): [convenience-properties.js](./examples/convenience-properties.js)
135-
* Use watch enpodints to get a JSON stream of Deployment events:
135+
* Use watch endpoints to get a JSON stream of Deployment events:
136136
[watch.js](./examples/watch.js)
137137
* Extend the Kubernetes API and a `client` with a
138138
CustomerResourceDefinition: [using-crds.js](./examples/using-crds.js)
139-
* An exended CustomResourceDefinition example that implements a
139+
* An extended CustomResourceDefinition example that implements a
140140
controller to "notify" on changes to Deployment objects:
141141
[deployment-notifier.js](./examples/deployment-notifier.js)
142142
* A basic canary controller that removes Pods from a Service if they

0 commit comments

Comments
 (0)
Please sign in to comment.