Skip to content

Commit

Permalink
Fix typo in Secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
tmrts committed Mar 31, 2015
1 parent 8a7a127 commit 6c10cf7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/design/secrets.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/api/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/api/v1beta1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/api/v1beta2/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/api/v1beta3/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

Expand Down

0 comments on commit 6c10cf7

Please sign in to comment.