From 33ce0e99b5cf52ff9aaefc35974b3f8b34767d6b Mon Sep 17 00:00:00 2001 From: TwiN Date: Thu, 15 Sep 2022 17:41:24 -0400 Subject: [PATCH] chore: Fix typo in deprecation message --- config/remote/remote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/remote/remote.go b/config/remote/remote.go index 918ea6a4..e46dea2b 100644 --- a/config/remote/remote.go +++ b/config/remote/remote.go @@ -33,7 +33,7 @@ func (c *Config) ValidateAndSetDefaults() error { if len(c.Instances) > 0 { log.Println("WARNING: Your configuration is using 'remote', which is in alpha and may be updated/removed in future versions.") log.Println("WARNING: See https://github.com/TwiN/gatus/issues/64 for more information") - log.Println("WARNING: This feature is a candidate for removal in future versions. Please comment on the issue above is you need this feature.") + log.Println("WARNING: This feature is a candidate for removal in future versions. Please comment on the issue above if you need this feature.") } return nil }