From a95259b84fea770545315880b67382cff7456ba7 Mon Sep 17 00:00:00 2001 From: Xingcai Zhang Date: Mon, 23 Oct 2017 23:14:09 +0800 Subject: [PATCH] fix some typos --- .../api-machinery/customresources-validation.md | 2 +- .../api-machinery/dynamic-admission-control-configuration.md | 2 +- 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 ae9071077..64448ee31 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 a7d42caaa..66720ad78 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.