summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXingcai Zhang <zhangxingcai@ghostcloud.cn>2017-10-23 23:14:09 +0800
committerXingcai Zhang <zhangxingcai@ghostcloud.cn>2017-10-23 23:14:09 +0800
commita95259b84fea770545315880b67382cff7456ba7 (patch)
treeeac878f310110a884d0c275499bbc7fee2850991
parent1df42ec84bf5539e132a079c4bf331268f5848d6 (diff)
fix some typos
-rw-r--r--contributors/design-proposals/api-machinery/customresources-validation.md2
-rw-r--r--contributors/design-proposals/api-machinery/dynamic-admission-control-configuration.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/contributors/design-proposals/api-machinery/customresources-validation.md b/contributors/design-proposals/api-machinery/customresources-validation.md
index ae907107..64448ee3 100644
--- a/contributors/design-proposals/api-machinery/customresources-validation.md
+++ b/contributors/design-proposals/api-machinery/customresources-validation.md
@@ -70,7 +70,7 @@ The schema is referenced in [`CustomResourceDefinitionSpec`](https://github.com/
The schema types follow those of the OpenAPI library, but we decided to define them independently for the API to have full control over the serialization and versioning. Hence, it is easy to convert our types into those used for validation or to integrate them into an OpenAPI spec later.
-Reference http://json-schema.org is also used by OpenAPI. We propose this as there are implementations available in Go and with OpenAPI, we will also be able to serve OpenAPI specs for CustomResourceDefintions.
+Reference http://json-schema.org is also used by OpenAPI. We propose this as there are implementations available in Go and with OpenAPI, we will also be able to serve OpenAPI specs for CustomResourceDefinitions.
```go
// CustomResourceSpec describes how a user wants their resource to appear
diff --git a/contributors/design-proposals/api-machinery/dynamic-admission-control-configuration.md b/contributors/design-proposals/api-machinery/dynamic-admission-control-configuration.md
index a7d42caa..66720ad7 100644
--- a/contributors/design-proposals/api-machinery/dynamic-admission-control-configuration.md
+++ b/contributors/design-proposals/api-machinery/dynamic-admission-control-configuration.md
@@ -211,7 +211,7 @@ Notes:
in the beta version.
* We excluded `Retry` as a FailurePolicy, because we want to expose the
- flakeness of an admission controller; and admission controllers like the quota
+ flakiness of an admission controller; and admission controllers like the quota
controller are not idempotent.
* There are multiple ways to compose `Rules []Rule` to achieve the same effect.