From c9d04c770add8868ff57d5c73ab8408edceec356 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 15 May 2025 12:31:19 +0200 Subject: [PATCH] cli/command/formatter: touch-up godoc for ContainerContext.State() Signed-off-by: Sebastiaan van Stijn --- cli/command/formatter/container.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/command/formatter/container.go b/cli/command/formatter/container.go index 71087b91d3..4e5a1cd750 100644 --- a/cli/command/formatter/container.go +++ b/cli/command/formatter/container.go @@ -218,7 +218,8 @@ func (c *ContainerContext) Ports() string { return DisplayablePorts(c.c.Ports) } -// State returns the container's current state (e.g. "running" or "paused") +// State returns the container's current state (e.g. "running" or "paused"). +// Refer to [container.ContainerState] for possible states. func (c *ContainerContext) State() string { return c.c.State }