diff options
Diffstat (limited to 'service/http/handler.go')
-rw-r--r-- | service/http/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/http/handler.go b/service/http/handler.go index 9e67e5b4..945cd51e 100644 --- a/service/http/handler.go +++ b/service/http/handler.go @@ -51,7 +51,7 @@ func (h *Handler) Listen(l func(event int, ctx interface{})) { h.lsn = l } -// middleware serve using PSR-7 requests passed to underlying application. Attempts to serve static files first if enabled. +// mdwr serve using PSR-7 requests passed to underlying application. Attempts to serve static files first if enabled. func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) { // validating request size if h.cfg.MaxRequest != 0 { |