From ca24abb3d8c189c4cc090fb4daaf562e044b1c67 Mon Sep 17 00:00:00 2001 From: Corey Clark Date: Wed, 17 Jun 2026 12:25:49 -0400 Subject: [PATCH 1/4] Fix typo in test description for NewAtomicBool --- system/utils_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/utils_test.go b/system/utils_test.go index b8fc385fa..633afea37 100644 --- a/system/utils_test.go +++ b/system/utils_test.go @@ -49,7 +49,7 @@ func Test_Utils(t *testing.T) { b = NewAtomicBool(false) }) - g.It("initalizes with the provided start value", func() { + g.It("initializes with the provided start value", func() { b = NewAtomicBool(true) g.Assert(b.Load()).IsTrue() From 757fae210132eb995fc5d828f43928485ef64334 Mon Sep 17 00:00:00 2001 From: Corey Clark Date: Wed, 17 Jun 2026 12:26:49 -0400 Subject: [PATCH 2/4] Fix typo in middleware comment --- router/middleware/middleware.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/middleware/middleware.go b/router/middleware/middleware.go index 190871149..f203f10fb 100644 --- a/router/middleware/middleware.go +++ b/router/middleware/middleware.go @@ -176,7 +176,7 @@ func RequireAuthorization() gin.HandlerFunc { } // All requests to Wings must be authorized with the authentication token present in - // the Wings configuration file. Remeber, all requests to Wings come from the Panel + // the Wings configuration file. Remember, all requests to Wings come from the Panel // backend, or using a signed JWT for temporary authentication. if subtle.ConstantTimeCompare([]byte(auth[1]), []byte(config.Get().Token.Token)) != 1 { c.AbortWithStatusJSON(http.StatusForbidden, gin.H{"error": "You are not authorized to access this endpoint."}) From d27d57c6f6fcdf906203404b3039dd33dbe99f97 Mon Sep 17 00:00:00 2001 From: Corey Clark Date: Wed, 17 Jun 2026 12:27:47 -0400 Subject: [PATCH 3/4] Fix typo in compression level comment --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index a83936d88..fb3438780 100644 --- a/config/config.go +++ b/config/config.go @@ -285,7 +285,7 @@ type Backups struct { // // "none" -> no compression will be applied // "best_speed" -> uses gzip level 1 for fast speed - // "best_compression" -> uses gzip level 9 for minimal disk space useage + // "best_compression" -> uses gzip level 9 for minimal disk space usage // // Defaults to "best_speed" (level 1) CompressionLevel string `default:"best_speed" yaml:"compression_level"` From f3c0c5de1586ee7626054a68210e9a8182ddd22e Mon Sep 17 00:00:00 2001 From: Corey Clark Date: Wed, 17 Jun 2026 12:28:35 -0400 Subject: [PATCH 4/4] Fix typo in comment about resource cleanup --- environment/docker/power.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment/docker/power.go b/environment/docker/power.go index 7b143a4b4..82bb08fe0 100644 --- a/environment/docker/power.go +++ b/environment/docker/power.go @@ -234,7 +234,7 @@ func (e *Environment) WaitForStop(ctx context.Context, duration time.Duration, t // We pass through the timed context for this stop action so that if one of the // internal docker calls fails to ever finish before we've exhausted the time limit - // the resources get cleaned up, and the exection is stopped. + // the resources get cleaned up, and the execution is stopped. if err := e.Stop(tctx); err != nil { if terminate && errors.Is(err, context.DeadlineExceeded) { return doTermination("stop")