From 21febcb5cf57bac619f8c974d2da75a4ec2a28bb Mon Sep 17 00:00:00 2001
From: Alexis Couvreur <alexiscouvreur.pro@gmail.com>
Date: Sun, 2 Apr 2023 01:59:18 -0400
Subject: [PATCH] docs: add `starting` to `HealthCheckResults.Status`

Signed-off-by: Alexis Couvreur <alexiscouvreur.pro@gmail.com>
---
 libpod/define/container_inspect.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libpod/define/container_inspect.go b/libpod/define/container_inspect.go
index 9a9f88672e..750ddf1aeb 100644
--- a/libpod/define/container_inspect.go
+++ b/libpod/define/container_inspect.go
@@ -238,7 +238,7 @@ func (s *InspectContainerState) Healthcheck() HealthCheckResults {
 
 // HealthCheckResults describes the results/logs from a healthcheck
 type HealthCheckResults struct {
-	// Status healthy or unhealthy
+	// Status starting, healthy or unhealthy
 	Status string `json:"Status"`
 	// FailingStreak is the number of consecutive failed healthchecks
 	FailingStreak int `json:"FailingStreak"`