From 92789dff1957f24fb70a61c4ad81f4f32aecd565 Mon Sep 17 00:00:00 2001 From: adnano Date: Tue, 13 Oct 2020 19:11:59 -0400 Subject: [PATCH] Update comment --- server.go | 1 - 1 file changed, 1 deletion(-) diff --git a/server.go b/server.go index e6c67c6..cc5f6f7 100644 --- a/server.go +++ b/server.go @@ -308,7 +308,6 @@ func Redirect(rw *ResponseWriter, req *Request, url string) { // RedirectHandler returns a simple handler that responds to each request with // a redirect to the given URL. -// If permanent is true, the handler will respond with a permanent redirect. func RedirectHandler(url string) Handler { return HandlerFunc(func(rw *ResponseWriter, req *Request) { Redirect(rw, req, url)