From 8a43be82053241da1e5e4cdc25b385c0930c2dcd Mon Sep 17 00:00:00 2001 From: s3onghyun Date: Thu, 18 Jun 2026 17:52:11 +0900 Subject: [PATCH] libpod: fix "to to" typo in container_top comment Signed-off-by: s3onghyun --- libpod/container_top_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpod/container_top_linux.go b/libpod/container_top_linux.go index 04e05becc6..3b498b855a 100644 --- a/libpod/container_top_linux.go +++ b/libpod/container_top_linux.go @@ -39,7 +39,7 @@ const ( // podmanTopCommand is the reexec key to safely setup the environment for ps to be executed podmanTopCommand = "podman-top" - // podmanTopExitCode is a special exec code to signal that podman failed to to something in + // podmanTopExitCode is a special exec code to signal that podman failed to do something in // reexec command not ps. This is used to give a better error. podmanTopExitCode = 255 )