From 692dac4cbdc04ac083043172a41df300329f9d59 Mon Sep 17 00:00:00 2001 From: German Maltsev Date: Wed, 19 Jun 2024 17:40:56 +0300 Subject: [PATCH] [no-relnote] Fixed spelling error Signed-off-by: German Maltsev --- internal/oci/spec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/oci/spec.go b/internal/oci/spec.go index 2daa7503..e95ea1cf 100644 --- a/internal/oci/spec.go +++ b/internal/oci/spec.go @@ -26,7 +26,7 @@ import ( // SpecModifier defines an interface for modifying a (raw) OCI spec type SpecModifier interface { - // Modify is a method that accepts a pointer to an OCI Srec and returns an + // Modify is a method that accepts a pointer to an OCI Spec and returns an // error. The intention is that the function would modify the spec in-place. Modify(*specs.Spec) error }