diff options
author | xkcdstickfigure <97917457+xkcdstickfigure@users.noreply.github.com> | 2022-06-11 19:54:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-11 14:54:08 -0400 |
commit | 47bb06236d664d7091a298e17c3dc5cc2cddf396 (patch) | |
tree | 6d90007cb1be3e2022ec9bbcbc69773204d8e17c /routers/web/web.go | |
parent | a9cc9c0f7afacb2e51cfd1885d392f56dca0c7f5 (diff) | |
download | gitea-47bb06236d664d7091a298e17c3dc5cc2cddf396.tar.gz gitea-47bb06236d664d7091a298e17c3dc5cc2cddf396.zip |
fixed comment typo (#19944)
Diffstat (limited to 'routers/web/web.go')
-rw-r--r-- | routers/web/web.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/web.go b/routers/web/web.go index 88a446d067..dc596c6970 100644 --- a/routers/web/web.go +++ b/routers/web/web.go @@ -126,7 +126,7 @@ func Routes() *web.Route { routes.Route("/avatars/*", "GET, HEAD", storageHandler(setting.Avatar.Storage, "avatars", storage.Avatars)) routes.Route("/repo-avatars/*", "GET, HEAD", storageHandler(setting.RepoAvatar.Storage, "repo-avatars", storage.RepoAvatars)) - // for health check - doeesn't need to be passed through gzip handler + // for health check - doesn't need to be passed through gzip handler routes.Head("/", func(w http.ResponseWriter, req *http.Request) { w.WriteHeader(http.StatusOK) }) |