summaryrefslogtreecommitdiff
path: root/libpod/container_internal.go
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2018-05-24 17:50:37 -0700
committerAtomic Bot <atomic-devel@projectatomic.io>2018-05-25 08:45:15 +0000
commit684b544e9c45129a3d8112cfab22526440d8fd13 (patch)
tree8aa092161773f0bb171b6e15cffd5d468a1b4b88 /libpod/container_internal.go
parenta7180cd5459ca063c14a60965b4487f04c0af439 (diff)
downloadpodman-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/container_internal.go')
-rw-r--r--libpod/container_internal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go
index 9896d0ed7..258ee6ffd 100644
--- a/libpod/container_internal.go
+++ b/libpod/container_internal.go
@@ -83,7 +83,7 @@ func (c *Container) rootFsSize() (int64, error) {
}
}
// Get the size of the last layer. Has to be outside of the loop
- // because the parent of the last layer is "", andlstore.Get("")
+ // because the parent of the last layer is "", and lstore.Get("")
// will return an error.
layerSize, err := c.runtime.store.DiffSize(layer.Parent, layer.ID)
return size + layerSize, err