diff --git a/pkg/gui/gocui.go b/pkg/gui/gocui.go index e4c0b155..feaf576d 100644 --- a/pkg/gui/gocui.go +++ b/pkg/gui/gocui.go @@ -21,7 +21,7 @@ var gocuiColorMap = map[string]gocui.Attribute{ "underline": gocui.AttrUnderline, } -// GetAttribute gets the gocui color attribute from the string +// GetGocuiAttribute gets the gocui color attribute from the string func GetGocuiAttribute(key string) gocui.Attribute { if utils.IsValidHexValue(key) { values := color.HEX(key).Values() diff --git a/pkg/gui/presentation/containers.go b/pkg/gui/presentation/containers.go index f58fc706..359cbdfa 100644 --- a/pkg/gui/presentation/containers.go +++ b/pkg/gui/presentation/containers.go @@ -89,7 +89,7 @@ func getContainerDisplayStatus(guiConfig *config.GuiConfig, c *commands.Containe return utils.ColoredString(containerState, getContainerColor(c)) } -// GetDisplayStatus returns the exit code if the container has exited, and the health status if the container is running (and has a health check) +// getContainerDisplaySubstatus returns the exit code if the container has exited, and the health status if the container is running (and has a health check) func getContainerDisplaySubstatus(guiConfig *config.GuiConfig, c *commands.Container) string { if !c.DetailsLoaded() { return ""