From 9c8277247d3e2e60a1f945d82851f58447cbdd74 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Wed, 21 Apr 2021 05:38:34 -0400 Subject: Fixes from make codespell Signed-off-by: Daniel J Walsh --- libpod/container_internal.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libpod/container_internal.go') 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 -- cgit v1.2.3-54-g00ecf