From 7bc381b3569d43ad936c2a9a25665536ee6a0541 Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Mon, 24 May 2021 21:46:00 -0400 Subject: [PATCH] Fix typo --- security/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/handler.go b/security/handler.go index 0821347e..af99b8b9 100644 --- a/security/handler.go +++ b/security/handler.go @@ -5,7 +5,7 @@ import ( "strings" ) -// Handler takes care of security for a given handler with the given security configuratioon +// Handler takes care of security for a given handler with the given security configuration func Handler(handler http.HandlerFunc, security *Config) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { usernameEntered, passwordEntered, ok := r.BasicAuth()