summaryrefslogtreecommitdiff
path: root/libpod/container_internal.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-04-21 05:38:34 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2021-04-21 13:16:33 -0400
commit9c8277247d3e2e60a1f945d82851f58447cbdd74 (patch)
treeb5d54266d444317b08cb15b04265ee5912d959ce /libpod/container_internal.go
parent544c3156657e078cef297623842f79cb72dc32c6 (diff)
downloadpodman-9c8277247d3e2e60a1f945d82851f58447cbdd74.tar.gz
podman-9c8277247d3e2e60a1f945d82851f58447cbdd74.tar.bz2
podman-9c8277247d3e2e60a1f945d82851f58447cbdd74.zip
Fixes from make codespell
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r--libpod/container_internal.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go
index 041fa13e7..80c00a622 100644
--- a/libpod/container_internal.go
+++ b/libpod/container_internal.go
@@ -1313,7 +1313,7 @@ func (c *Container) stop(timeout uint) error {
}
// We have to check stopErr *after* we lock again - otherwise, we have a
- // change of panicing on a double-unlock. Ref: GH Issue 9615
+ // change of panicking on a double-unlock. Ref: GH Issue 9615
if stopErr != nil {
return stopErr
}
@@ -1676,7 +1676,7 @@ func (c *Container) chownVolume(volumeName string) error {
// TODO: For now, I've disabled chowning volumes owned by non-Podman
// drivers. This may be safe, but it's really going to be a case-by-case
- // thing, I think - safest to leave disabled now and reenable later if
+ // thing, I think - safest to leave disabled now and re-enable later if
// there is a demand.
if vol.state.NeedsChown && !vol.UsesVolumeDriver() {
vol.state.NeedsChown = false