From ae26a9c85a00591f842bd40c2d0b9eca72bf5447 Mon Sep 17 00:00:00 2001 From: LeSingh1 Date: Sun, 17 May 2026 18:39:51 -0700 Subject: [PATCH] Fix missing apostrophes in Image scope-walk comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two contractions in the manifest-scan skip path of pruneUnreferencedManifests: 'Its safe' → 'It's safe' and 'it wont have' → 'it won't have'. Comment text only. --- Sources/Containerization/Image/Image.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Containerization/Image/Image.swift b/Sources/Containerization/Image/Image.swift index 2fb30c76..bfd0892f 100644 --- a/Sources/Containerization/Image/Image.swift +++ b/Sources/Containerization/Image/Image.swift @@ -108,7 +108,7 @@ public struct Image: Sendable { referenced.append(manifest.digest.trimmingDigestPrefix) guard let m: Manifest = try? await contentStore.get(digest: manifest.digest) else { // If the requested digest does not exist or is not a manifest. Skip. - // Its safe to skip processing this digest as it wont have any child layers. + // It's safe to skip processing this digest as it won't have any child layers. continue } let descs = m.layers + [m.config]