Fixes typos in GoDoc and comments

This commit is contained in:
Ethan Heilman 2024-04-15 17:27:54 -04:00
parent 33f8df7eb2
commit 44fe280213
2 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ func SetupServer(issuer string, storage Storage, logger *slog.Logger, wrapServer
// for simplicity, we provide a very small default page for users who have signed out
router.HandleFunc(pathLoggedOut, func(w http.ResponseWriter, req *http.Request) {
w.Write([]byte("signed out successfully"))
// no need to check/log error, this will be handeled by the middleware.
// no need to check/log error, this will be handled by the middleware.
})
// creation of the OpenIDProvider with the just created in-memory Storage