From 58d7314ee205ff578c3ed77ac472178bee0c8f4f Mon Sep 17 00:00:00 2001 From: Priyansh Sao Date: Sat, 13 Jun 2026 07:15:09 +0000 Subject: [PATCH] fix: correct misspelled comment in container_inspect.go This replaces the misspelled word in comments "Exosed" with the correct spelling "Exposed" in the file container_inspect.go. Fixes: #28927 Signed-off-by: Priyansh Sao --- libpod/container_inspect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpod/container_inspect.go b/libpod/container_inspect.go index 29397e4bbe8..3106488335e 100644 --- a/libpod/container_inspect.go +++ b/libpod/container_inspect.go @@ -464,7 +464,7 @@ func (c *Container) generateInspectContainerConfig(spec *spec.Spec) *define.Insp ctrConfig.SdNotifyMode = c.config.SdNotifyMode ctrConfig.SdNotifySocket = c.config.SdNotifySocket - // Exosed ports consists of all exposed ports and all port mappings for + // Exposed ports consists of all exposed ports and all port mappings for // this container. It does *NOT* follow to another container if we share // the network namespace. exposedPorts := make(map[string]struct{})