From 8c3eeb56673f0074d4da064aaac447980f704eb4 Mon Sep 17 00:00:00 2001 From: a Date: Thu, 22 Aug 2024 07:40:31 -0500 Subject: [PATCH] Update src/docs/markdown/extending-caddy/placeholders.md Co-authored-by: Francis Lavoie --- 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 793e9b7..ba07ba6 100644 --- a/src/docs/markdown/extending-caddy/placeholders.md +++ b/src/docs/markdown/extending-caddy/placeholders.md @@ -84,7 +84,7 @@ Some users may immediately notice that this means it is impossible to use the `{ ## Implementing placeholder support -You should not process placeholders when ummarshaling your Caddyfile. Instead, unmarshal the placeholders as strings in your configuration and evaluate them during either your module's execution or `Provision()` using a `caddy.Replacer`. +You should not process placeholders when ummarshaling your Caddyfile. Instead, unmarshal the placeholders as strings in your configuration and evaluate them during either your module's execution (e.g. `ServeHTTP()` for HTTP handlers, `Match()` for matchers, etc.) or in the `Provision()` step, using a `caddy.Replacer`. ### Examples