diff options
| author | adnano <[email protected]> | 2020-10-11 19:41:44 -0400 |
|---|---|---|
| committer | adnano <[email protected]> | 2020-10-11 19:41:44 -0400 |
| commit | 92af3df4c57d603e0017290abf9a4cd118379bbb (patch) | |
| tree | b9113587c61c63218ff2804ca596ff81a2a5d1b2 /server.go | |
| parent | Move filesystem code to its own file (diff) | |
| download | go-gemini-92af3df4c57d603e0017290abf9a4cd118379bbb.tar.xz go-gemini-92af3df4c57d603e0017290abf9a4cd118379bbb.zip | |
Update comments
Diffstat (limited to 'server.go')
| -rw-r--r-- | server.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -308,7 +308,6 @@ func PermanentRedirect(rw *ResponseWriter, req *Request, url string) { // PermanentRedirectHandler 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 PermanentRedirectHandler(url string) Handler { return HandlerFunc(func(rw *ResponseWriter, req *Request) { PermanentRedirect(rw, req, url) @@ -369,7 +368,7 @@ func CertificateHandler(f func(*x509.Certificate)) Handler { }) } -// A wrapper around a bare function that implements Handler. +// HandlerFunc is a wrapper around a bare function that implements Handler. type HandlerFunc func(*ResponseWriter, *Request) func (f HandlerFunc) Serve(rw *ResponseWriter, req *Request) { |