Fix docblock comment

This commit is contained in:
Ralph Slooten
2023-09-06 16:14:54 +12:00
parent a37da776d7
commit e265d7018e

View File

@@ -2,7 +2,7 @@ package handlers
import "net/http"
// Healthz is a liveness probe
// HealthzHandler is a liveness probe
func HealthzHandler(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusOK)
}