From 89db50e8df1b573bf6e0e3a9f330a795a675dab0 Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Fri, 7 Nov 2025 14:29:27 +1000 Subject: [PATCH] chore: consistent casing --- pkg/client/deploy/operation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/client/deploy/operation.go b/pkg/client/deploy/operation.go index 594b38c0..78a94e68 100644 --- a/pkg/client/deploy/operation.go +++ b/pkg/client/deploy/operation.go @@ -109,7 +109,7 @@ func (o *RemoveContainerOperation) Execute(ctx context.Context, cli Client) erro func (o *RemoveContainerOperation) Format(resolver NameResolver) string { machineName := resolver.MachineName(o.MachineID) - return fmt.Sprintf("%s: Remove container [ID=%s image=%s]", + return fmt.Sprintf("%s: Remove container [id=%s image=%s]", machineName, o.Container.ShortID(), o.Container.Config.Image) }