From ab3be3c68b2e740d1ccccd3a26dbaa692eb6e46e Mon Sep 17 00:00:00 2001 From: Weixie Cui Date: Mon, 26 Jan 2026 20:14:43 +0800 Subject: [PATCH 1/2] typo: called to caller Signed-off-by: Weixie Cui --- client/container_attach.go | 2 +- client/container_exec.go | 2 +- vendor/github.com/moby/moby/client/container_attach.go | 2 +- vendor/github.com/moby/moby/client/container_exec.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/container_attach.go b/client/container_attach.go index fa3a2efcc9..ce84122d32 100644 --- a/client/container_attach.go +++ b/client/container_attach.go @@ -23,7 +23,7 @@ type ContainerAttachResult struct { // ContainerAttach attaches a connection to a container in the server. // It returns a [HijackedResponse] with the hijacked connection -// and a reader to get output. It's up to the called to close +// and a reader to get output. It's up to the caller to close // the hijacked connection by calling [HijackedResponse.Close]. // // The stream format on the response uses one of two formats: diff --git a/client/container_exec.go b/client/container_exec.go index c3bf328585..30ed00ea52 100644 --- a/client/container_exec.go +++ b/client/container_exec.go @@ -117,7 +117,7 @@ type ExecAttachResult struct { // ExecAttach attaches a connection to an exec process in the server. // // It returns a [HijackedResponse] with the hijacked connection -// and a reader to get output. It's up to the called to close +// and a reader to get output. It's up to the caller to close // the hijacked connection by calling [HijackedResponse.Close]. // // The stream format on the response uses one of two formats: diff --git a/vendor/github.com/moby/moby/client/container_attach.go b/vendor/github.com/moby/moby/client/container_attach.go index fa3a2efcc9..ce84122d32 100644 --- a/vendor/github.com/moby/moby/client/container_attach.go +++ b/vendor/github.com/moby/moby/client/container_attach.go @@ -23,7 +23,7 @@ type ContainerAttachResult struct { // ContainerAttach attaches a connection to a container in the server. // It returns a [HijackedResponse] with the hijacked connection -// and a reader to get output. It's up to the called to close +// and a reader to get output. It's up to the caller to close // the hijacked connection by calling [HijackedResponse.Close]. // // The stream format on the response uses one of two formats: diff --git a/vendor/github.com/moby/moby/client/container_exec.go b/vendor/github.com/moby/moby/client/container_exec.go index c3bf328585..30ed00ea52 100644 --- a/vendor/github.com/moby/moby/client/container_exec.go +++ b/vendor/github.com/moby/moby/client/container_exec.go @@ -117,7 +117,7 @@ type ExecAttachResult struct { // ExecAttach attaches a connection to an exec process in the server. // // It returns a [HijackedResponse] with the hijacked connection -// and a reader to get output. It's up to the called to close +// and a reader to get output. It's up to the caller to close // the hijacked connection by calling [HijackedResponse.Close]. // // The stream format on the response uses one of two formats: From f187929e87edd1ae55d6cf46d3152014b9b6037d Mon Sep 17 00:00:00 2001 From: Weixie Cui Date: Mon, 26 Jan 2026 20:49:31 +0800 Subject: [PATCH 2/2] retrigger github action Signed-off-by: Weixie Cui