Skip to content

Commit

Permalink
Merge pull request kubernetes#6249 from TamerTas/typo
Browse files Browse the repository at this point in the history
Fix typo in Secrets
  • Loading branch information
vmarmol committed Mar 31, 2015
2 parents bb0f613 + 6c10cf7 commit a78a009
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 @@ -1643,7 +1643,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 @@ -1451,7 +1451,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 @@ -1514,7 +1514,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 @@ -1548,7 +1548,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 a78a009

Please sign in to comment.