From 2341572188e61f3635f6cb259aa0b25b42cda0f5 Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Sun, 10 May 2026 17:19:13 -0700 Subject: [PATCH] Fix typo: occured -> occurred --- internal/pkg/docker/orchestrator/orchestrator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/docker/orchestrator/orchestrator.go b/internal/pkg/docker/orchestrator/orchestrator.go index 4ed28be08d0..e9924a7f505 100644 --- a/internal/pkg/docker/orchestrator/orchestrator.go +++ b/internal/pkg/docker/orchestrator/orchestrator.go @@ -361,7 +361,7 @@ func ipv4Increment(ip net.IP, network *net.IPNet) (net.IP, error) { } ipv4[idx]++ - if ipv4[idx] == 0 { // overflow occured + if ipv4[idx] == 0 { // overflow occurred return inc(idx - 1) } return nil