From 98d9cad62e27a7742a09e2ce67f41cabd882d57f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Michaud?= Date: Thu, 8 Jul 2021 04:04:43 +0200 Subject: [PATCH] fix(regulation): use lower case in error messages (#2152) --- internal/regulation/const.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/regulation/const.go b/internal/regulation/const.go index 151183795..7260f2abb 100644 --- a/internal/regulation/const.go +++ b/internal/regulation/const.go @@ -3,4 +3,4 @@ package regulation import "fmt" // ErrUserIsBanned user is banned error message. -var ErrUserIsBanned = fmt.Errorf("User is banned") +var ErrUserIsBanned = fmt.Errorf("user is banned")