From c86173d46fce007c34df2c4f338b4cd45596dfe8 Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Thu, 24 Dec 2020 00:28:44 -0500 Subject: [PATCH] Fix typo --- core/service.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/service.go b/core/service.go index 45826a30..6cfed0ce 100644 --- a/core/service.go +++ b/core/service.go @@ -23,13 +23,13 @@ const ( ) var ( - // ErrServiceWithNoCondition is the error with which gatus will panic if a service is configured with no conditions + // ErrServiceWithNoCondition is the error with which Gatus will panic if a service is configured with no conditions ErrServiceWithNoCondition = errors.New("you must specify at least one condition per service") - // ErrServiceWithNoURL is the error with which gatus will panic if a service is configured with no url + // ErrServiceWithNoURL is the error with which Gatus will panic if a service is configured with no url ErrServiceWithNoURL = errors.New("you must specify an url for each service") - // ErrServiceWithNoName is the error with which gatus will panic if a service is configured with no name + // ErrServiceWithNoName is the error with which Gatus will panic if a service is configured with no name ErrServiceWithNoName = errors.New("you must specify a name for each service") )