diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-05-24 17:50:37 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-25 08:45:15 +0000 |
commit | 684b544e9c45129a3d8112cfab22526440d8fd13 (patch) | |
tree | 8aa092161773f0bb171b6e15cffd5d468a1b4b88 /libpod/boltdb_state_internal.go | |
parent | a7180cd5459ca063c14a60965b4487f04c0af439 (diff) | |
download | podman-684b544e9c45129a3d8112cfab22526440d8fd13.tar.gz podman-684b544e9c45129a3d8112cfab22526440d8fd13.tar.bz2 podman-684b544e9c45129a3d8112cfab22526440d8fd13.zip |
Spell check strings and comments
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #831
Approved by: rhatdan
Diffstat (limited to 'libpod/boltdb_state_internal.go')
-rw-r--r-- | libpod/boltdb_state_internal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/boltdb_state_internal.go b/libpod/boltdb_state_internal.go index 29ed42f1e..407d2758a 100644 --- a/libpod/boltdb_state_internal.go +++ b/libpod/boltdb_state_internal.go @@ -427,7 +427,7 @@ func (s *BoltState) addContainer(ctr *Container, pod *Pod) error { return errors.Wrapf(ErrInvalidArg, "container %s depends on container %s which is in a different pod (%s)", ctr.ID(), dependsCtr, string(depCtrPod)) } } else { - // If we're not part of a pod, we cannot depend on containets in a pod + // If we're not part of a pod, we cannot depend on containers in a pod if depCtrPod != nil { return errors.Wrapf(ErrInvalidArg, "container %s depends on container %s which is in a pod - containers not in pods cannot depend on containers in pods", ctr.ID(), dependsCtr) } |