From 2aa33c8043d5d1d3ff977a34fc87c9de47f590ab Mon Sep 17 00:00:00 2001 From: Eric Cousineau Date: Sat, 27 Mar 2021 12:08:47 -0400 Subject: [PATCH] liquid: Replace "mutually exclusive" with "orthogonal" (#8584) Was a bit confused when I saw "mutually exclusive" regarding `error_mode` and (`strict_variables`, `strict_filters`), then to see both sets turned on. Perhaps "orthogonal" (they don't affect each other) is slightly better wording than "mutually exclusive" (they can't "exist" at the same time)? --- docs/_docs/configuration/liquid.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/configuration/liquid.md b/docs/_docs/configuration/liquid.md index 67e03c2cf..510964509 100644 --- a/docs/_docs/configuration/liquid.md +++ b/docs/_docs/configuration/liquid.md @@ -23,8 +23,8 @@ non-existing filters by setting `strict_variables` and / or `strict_filters` to `true` respectively. {% include docs_version_badge.html version="3.8.0" %} Do note that while `error_mode` configures Liquid's parser, the `strict_variables` -and `strict_filters` options configure Liquid's renderer and are consequently, -mutually exclusive. +and `strict_filters` options configure Liquid's renderer and are consequently +orthogonal. An example of setting these variables within _config.yml is as follows: