From 8dd1b1d48054863081a0ae56bb4623248bdfaad5 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Mon, 1 Jun 2020 21:17:46 -0400 Subject: [PATCH] docs: Improve `not` example wording --- src/docs/markdown/caddyfile/matchers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/markdown/caddyfile/matchers.md b/src/docs/markdown/caddyfile/matchers.md index 10d7544..93229a8 100644 --- a/src/docs/markdown/caddyfile/matchers.md +++ b/src/docs/markdown/caddyfile/matchers.md @@ -318,7 +318,7 @@ Match requests WITH NEITHER: - an `/api/` path prefix, NOR - the `POST` request method -i.e. can have none of these to match +i.e. must have none of these to match: ```caddy-d not path /api/* @@ -329,7 +329,7 @@ Match requests WITHOUT BOTH: - an `/api/` path prefix, AND - the `POST` request method -i.e. can have zero or one of these to match +i.e. must have neither or either of these to match: ```caddy-d not {