From 8440f4efd6877666434ef66f8daadb0e6f549a79 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Mon, 23 Nov 2020 23:53:45 -0500 Subject: [PATCH] docs: Change matcher boolean wording --- src/docs/markdown/caddyfile/matchers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/markdown/caddyfile/matchers.md b/src/docs/markdown/caddyfile/matchers.md index 618707d..ed55120 100644 --- a/src/docs/markdown/caddyfile/matchers.md +++ b/src/docs/markdown/caddyfile/matchers.md @@ -139,7 +139,7 @@ Like directives, named matcher definitions must go inside the site blocks that u A named matcher definition constitutes a _matcher set_. Matchers in a set are AND'ed together; i.e. all must match. For example, if you have both a `header` and `path` matcher in the set, both must match. -For some matchers that accept multiple values, those values are OR'ed; i.e. one must match in order for the matcher to match. See the docs for each matcher for details on how they are merged. +Multiple matchers of the same type (e.g. multiple `path` matchers in the same set) may be combined using boolean algebra (AND/OR), as described in their respective sections below.