Fix spelling

This commit is contained in:
Maximilian 2023-08-03 12:11:01 -05:00
parent 9670b7d717
commit eda5344685

View File

@ -6,7 +6,7 @@ import (
"net/http"
)
// Csrf validates the CSRF token and returns the handler function if it succeded
// Csrf validates the CSRF token and returns the handler function if it succeeded
func Csrf(f func(w http.ResponseWriter, r *http.Request)) func(w http.ResponseWriter, r *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
_, err := security.VerifyCsrfToken(r)