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]