aboutsummaryrefslogtreecommitdiff
path: root/fs_handler_example_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'fs_handler_example_test.go')
-rw-r--r--fs_handler_example_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs_handler_example_test.go b/fs_handler_example_test.go
index 3831327..ec66dda 100644
--- a/fs_handler_example_test.go
+++ b/fs_handler_example_test.go
@@ -7,7 +7,7 @@ import (
"github.com/valyala/fasthttp"
)
-// Setup file handlers (aka 'file server config')
+// Setup file handlers (aka 'file server config').
var (
// Handler for serving images from /img/ path,
// i.e. /img/foo/bar.jpg will be served from
@@ -27,7 +27,7 @@ var (
filesHandler = fasthttp.FSHandler("/var/www/files", 0)
)
-// Main request handler
+// Main request handler.
func requestHandler(ctx *fasthttp.RequestCtx) {
path := ctx.Path()
switch {