From e066861ac7e23d1fe3715ac4146accef77a776d8 Mon Sep 17 00:00:00 2001 From: Yohei Yamamoto Date: Sat, 17 Jan 2026 17:54:57 +0900 Subject: [PATCH] fix: typo in comment Signed-off-by: Yohei Yamamoto --- cmd/containerd-shim-runc-v2/process/io_util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/containerd-shim-runc-v2/process/io_util.go b/cmd/containerd-shim-runc-v2/process/io_util.go index 72bbf9233f8f..731ac5013a22 100644 --- a/cmd/containerd-shim-runc-v2/process/io_util.go +++ b/cmd/containerd-shim-runc-v2/process/io_util.go @@ -45,7 +45,7 @@ func NewBinaryCmd(binaryURI *url.URL, id, ns string) *exec.Cmd { } // CloseFiles closes any files passed in. -// It it used for cleanup in the event of unexpected errors. +// It is used for cleanup in the event of unexpected errors. func CloseFiles(files ...*os.File) { for _, file := range files { file.Close()