From 6c10cf7b981297946d5db6ff405210d4befe83fa Mon Sep 17 00:00:00 2001 From: Tamer Tas Date: Wed, 1 Apr 2015 00:56:20 +0300 Subject: [PATCH] Fix typo in Secrets --- docs/design/secrets.md | 2 +- pkg/api/types.go | 2 +- pkg/api/v1beta1/types.go | 2 +- pkg/api/v1beta2/types.go | 2 +- pkg/api/v1beta3/types.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/design/secrets.md b/docs/design/secrets.md index d47d6092466..3c61de68cb6 100644 --- a/docs/design/secrets.md +++ b/docs/design/secrets.md @@ -277,7 +277,7 @@ type Secret struct { // representing the arbitrary (possibly non-string) data value here. Data map[string][]byte `json:"data,omitempty"` - // Used to facilitate programatic handling of secret data. + // Used to facilitate programmatic handling of secret data. Type SecretType `json:"type,omitempty"` } diff --git a/pkg/api/types.go b/pkg/api/types.go index febcc710e9c..2f5a1ace3ed 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -1629,7 +1629,7 @@ type Secret struct { // representing the arbitrary (possibly non-string) data value here. Data map[string][]byte `json:"data,omitempty"` - // Used to facilitate programatic handling of secret data. + // Used to facilitate programmatic handling of secret data. Type SecretType `json:"type,omitempty"` } diff --git a/pkg/api/v1beta1/types.go b/pkg/api/v1beta1/types.go index 65a23f75969..df18dde1c20 100644 --- a/pkg/api/v1beta1/types.go +++ b/pkg/api/v1beta1/types.go @@ -1418,7 +1418,7 @@ type Secret struct { // representing the arbitrary (possibly non-string) data value here. Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` - // Used to facilitate programatic handling of secret data. + // Used to facilitate programmatic handling of secret data. Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` } diff --git a/pkg/api/v1beta2/types.go b/pkg/api/v1beta2/types.go index 55088c4f804..dadd328e781 100644 --- a/pkg/api/v1beta2/types.go +++ b/pkg/api/v1beta2/types.go @@ -1481,7 +1481,7 @@ type Secret struct { // representing the arbitrary (possibly non-string) data value here. Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` - // Used to facilitate programatic handling of secret data. + // Used to facilitate programmatic handling of secret data. Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` } diff --git a/pkg/api/v1beta3/types.go b/pkg/api/v1beta3/types.go index d7837e3f77c..36c8bfda952 100644 --- a/pkg/api/v1beta3/types.go +++ b/pkg/api/v1beta3/types.go @@ -1534,7 +1534,7 @@ type Secret struct { // representing the arbitrary (possibly non-string) data value here. Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` - // Used to facilitate programatic handling of secret data. + // Used to facilitate programmatic handling of secret data. Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` }