From 0d89db0cc5fde5dd6632cfe4ba2c2bdcce8d3078 Mon Sep 17 00:00:00 2001 From: a Date: Wed, 21 Aug 2024 16:04:47 -0500 Subject: [PATCH] noot --- src/docs/markdown/extending-caddy/placeholders.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/markdown/extending-caddy/placeholders.md b/src/docs/markdown/extending-caddy/placeholders.md index df74d5b..f002d14 100644 --- a/src/docs/markdown/extending-caddy/placeholders.md +++ b/src/docs/markdown/extending-caddy/placeholders.md @@ -100,7 +100,7 @@ func (g *Gizmo) Provision(ctx caddy.Context) error { } ``` -Here, we extract a replacer out of the `context.Context` inside the `*http.Request`. This replacer not only has access global placeholders, but also http placeholders such as `{http.request.uri}` +Here, we extract a replacer out of the `context.Context` inside the `*http.Request`. This replacer not only has access to global placeholders, but also http placeholders such as `{http.request.uri}` ```go func (g *Gizmo) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyhttp.Handler) error {