summaryrefslogtreecommitdiff
path: root/pkg/specgen/specgen.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-03-21 00:31:03 +0100
committerGitHub <noreply@github.com>2020-03-21 00:31:03 +0100
commit77187daf07281854306f94452ca2bccad6215b7e (patch)
tree8fe6db845648596c90319463d95193262dd35ddf /pkg/specgen/specgen.go
parent7a095af92a6a39845b1c362222b23632f3e17001 (diff)
parentcec2e6d706bed601b6f7f9f96cd9933960a3d384 (diff)
downloadpodman-77187daf07281854306f94452ca2bccad6215b7e.tar.gz
podman-77187daf07281854306f94452ca2bccad6215b7e.tar.bz2
podman-77187daf07281854306f94452ca2bccad6215b7e.zip
Merge pull request #5555 from mheon/pod_specgen
Add basic structure of a spec generator for pods
Diffstat (limited to 'pkg/specgen/specgen.go')
-rw-r--r--pkg/specgen/specgen.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/specgen/specgen.go b/pkg/specgen/specgen.go
index 7a430652a..b123c1da5 100644
--- a/pkg/specgen/specgen.go
+++ b/pkg/specgen/specgen.go
@@ -53,7 +53,7 @@ type ContainerBasicConfig struct {
Terminal bool `json:"terminal,omitempty"`
// Stdin is whether the container will keep its STDIN open.
Stdin bool `json:"stdin,omitempty"`
- // Labels are key-valid labels that are used to add metadata to
+ // Labels are key-value pairs that are used to add metadata to
// containers.
// Optional.
Labels map[string]string `json:"labels,omitempty"`