From ebb6908bf6bc62cace69b926a1a9f3e43a063e08 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 16 Feb 2026 20:45:00 +0100 Subject: [PATCH 1/3] integration: fix dupword Signed-off-by: Sebastiaan van Stijn --- integration/image_load_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/image_load_test.go b/integration/image_load_test.go index a46cbea345411..466ffacef7b81 100644 --- a/integration/image_load_test.go +++ b/integration/image_load_test.go @@ -68,7 +68,7 @@ func TestImageLoad(t *testing.T) { // Add --local=true option since currently the transfer service // does not provide enough progress to avoid timeout // and --platform to only check for manifests for this platform. The "ctr image import" - // command otherwise might fail, if the the above docker commands use the containerd image + // command otherwise might fail, if the above docker commands use the containerd image // store, as in that case `docker save` produces OCI artifacts referencing manifests for // other platforms that are not included in what we downloaded. By specifying a platform, we // just ignore the references to other platforms. From 912a34ad06d23a870b19adc6ed3e30befb32f753 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 16 Feb 2026 20:45:16 +0100 Subject: [PATCH 2/3] script/test: fix dupword Signed-off-by: Sebastiaan van Stijn --- script/test/test2annotation.jq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test/test2annotation.jq b/script/test/test2annotation.jq index aaf0fe4ad3e6f..d280646d9fb70 100755 --- a/script/test/test2annotation.jq +++ b/script/test/test2annotation.jq @@ -56,7 +56,7 @@ def filter_test_item: # Take a list of test groups and make a map of tests keyed on the package name + # test name with all the output concatenated. # -# This uses the last test log message to get the the file/line number for the test (as .Details) +# This uses the last test log message to get the file/line number for the test (as .Details) def merge_output: reduce (.[][] | filter_test_item) as $item ( {}; ( "\($item.Package).\($item.Test)" as $key From 3c64bf76d085a975f9ea8e9320d25df4fd90cb3d Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 16 Feb 2026 20:45:30 +0100 Subject: [PATCH 3/3] docs: fix dupword Signed-off-by: Sebastiaan van Stijn --- docs/transfer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/transfer.md b/docs/transfer.md index 285c8372f002c..aeb62200e6b0b 100644 --- a/docs/transfer.md +++ b/docs/transfer.md @@ -104,7 +104,7 @@ Streaming is used by the transfer service to send or receive data streams as par ### Progress -Progress is an asynchronous callback sent from the server to the client. It is normally representing in the Go interface as a simple callback function, which the the client implements and the server calls. +Progress is an asynchronous callback sent from the server to the client. It is normally representing in the Go interface as a simple callback function, which the client implements and the server calls. From Go types progress uses these types ```go