diff --git a/Writing-a-Plugin:-HTTP-Middleware.md b/Writing-a-Plugin:-HTTP-Middleware.md index a071106..82f3338 100644 --- a/Writing-a-Plugin:-HTTP-Middleware.md +++ b/Writing-a-Plugin:-HTTP-Middleware.md @@ -59,7 +59,7 @@ func setup(c *caddy.Controller) error { } ``` -To chain in your new handler, get the config for the current site from the httpserver package. Then wrap your in a middleware function: +To chain in your new handler, get the config for the current site from the httpserver package. Then wrap your handler in a middleware function: ```go cfg := httpserver.GetConfig(c.Key)