From 3866d9dd0764724344c99856ae02b24d518ee2d2 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Wed, 26 Mar 2025 17:41:04 +0100 Subject: [PATCH] doc: fix typo --- internal/container/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/container/container.go b/internal/container/container.go index 72893b9..8e254d4 100644 --- a/internal/container/container.go +++ b/internal/container/container.go @@ -343,7 +343,7 @@ func (a *Client) runContainerLoop( // Check if the container is restarting. If it is not then we don't // want to wait for it again and can return early. ctr, err := a.apiClient.ContainerInspect(ctx, containerID) - // Race conidition: the container may already have been removed. + // Race condition: the container may already have been removed. if errdefs.IsNotFound(err) { // ignore error but do not restart } else if err != nil {