From 77debdef39c7933d999846930d771be0b913594c Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Mon, 23 Sep 2024 03:30:46 -0400 Subject: [PATCH] Minor whitespace fix --- src/docs/markdown/extending-caddy/placeholders.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/markdown/extending-caddy/placeholders.md b/src/docs/markdown/extending-caddy/placeholders.md index ba07ba6..efb4743 100644 --- a/src/docs/markdown/extending-caddy/placeholders.md +++ b/src/docs/markdown/extending-caddy/placeholders.md @@ -21,11 +21,11 @@ It is therefore important to understand that `{env.HOST}` is inherently differen As an example, see the following Caddyfile: ```caddyfile :8080 { - respond {$HOST} 200 + respond {$HOST} 200 } :8081 { - respond {env.HOST} 200 + respond {env.HOST} 200 } ```