From 0e5d9528be386fff8b8fd47c77b20382e049c792 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Mon, 5 Dec 2022 17:51:11 -0900 Subject: [PATCH] spelling --- backend/pkgs/hasher/password.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pkgs/hasher/password.go b/backend/pkgs/hasher/password.go index 64e88b2..1be8251 100644 --- a/backend/pkgs/hasher/password.go +++ b/backend/pkgs/hasher/password.go @@ -13,7 +13,7 @@ func init() { disableHas := os.Getenv("UNSAFE_DISABLE_PASSWORD_PROJECTION") == "yes_i_am_sure" if disableHas { - fmt.Println("WARNING: Password projection is disabled. This is unsafe in production.") + fmt.Println("WARNING: Password protection is disabled. This is unsafe in production.") enabled = false } }