From e4eff4bd6b3af6213357e279d0585898ae008d05 Mon Sep 17 00:00:00 2001 From: "Tim St. Clair" Date: Thu, 19 Nov 2015 19:23:40 -0800 Subject: [PATCH] Fix typo: s/recieve/receive/ --- api/swagger-spec/v1.json | 2 +- api/swagger-spec/v1beta1.json | 2 +- docs/api-reference/extensions/v1beta1/definitions.html | 4 ++-- docs/api-reference/v1/definitions.html | 4 ++-- pkg/api/types.go | 2 +- pkg/api/v1/types.go | 2 +- pkg/api/v1/types_swagger_doc_generated.go | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index dbdaef1027a..433c4ba3429 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -13524,7 +13524,7 @@ }, "v1.Probe": { "id": "v1.Probe", - "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to recieve traffic.", + "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "v1.ExecAction", diff --git a/api/swagger-spec/v1beta1.json b/api/swagger-spec/v1beta1.json index b270e5d8046..8d92f96c48f 100644 --- a/api/swagger-spec/v1beta1.json +++ b/api/swagger-spec/v1beta1.json @@ -3768,7 +3768,7 @@ }, "v1.Probe": { "id": "v1.Probe", - "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to recieve traffic.", + "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "v1.ExecAction", diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index ca7f0f9ceaf..2896930c910 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -3257,7 +3257,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

v1.Probe

-

Probe describes a health check to be performed against a container to determine whether it is alive or ready to recieve traffic.

+

Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

@@ -4261,7 +4261,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index 727e0e9ff5c..0db89aa5fbb 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -3023,7 +3023,7 @@ The resulting set of endpoints can be viewed as:

v1.Probe

-

Probe describes a health check to be performed against a container to determine whether it is alive or ready to recieve traffic.

+

Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

@@ -6887,7 +6887,7 @@ The resulting set of endpoints can be viewed as:
diff --git a/pkg/api/types.go b/pkg/api/types.go index 781d77a7028..d5fef2e87cf 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -714,7 +714,7 @@ type ExecAction struct { } // Probe describes a health check to be performed against a container to determine whether it is -// alive or ready to recieve traffic. +// alive or ready to receive traffic. type Probe struct { // The action taken to determine the health of a container Handler `json:",inline"` diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 77637675bc5..66986b1e91e 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -847,7 +847,7 @@ type ExecAction struct { } // Probe describes a health check to be performed against a container to determine whether it is -// alive or ready to recieve traffic. +// alive or ready to receive traffic. type Probe struct { // The action taken to determine the health of a container Handler `json:",inline"` diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index fa8976882f0..06d364893e1 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -1068,7 +1068,7 @@ func (PodTemplateSpec) SwaggerDoc() map[string]string { } var map_Probe = map[string]string{ - "": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to recieve traffic.", + "": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "initialDelaySeconds": "Number of seconds after the container has started before liveness probes are initiated. More info: http://releases.k8s.io/HEAD/docs/user-guide/pod-states.md#container-probes", "timeoutSeconds": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://releases.k8s.io/HEAD/docs/user-guide/pod-states.md#container-probes", "periodSeconds": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",