From 3ca7727099e9dcfb24938983a57fc3888d6894da Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 13 Oct 2022 15:48:23 +0200 Subject: [PATCH] Update website/docs/topics/the-anatomy-of-unleash.mdx --- website/docs/topics/the-anatomy-of-unleash.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/topics/the-anatomy-of-unleash.mdx b/website/docs/topics/the-anatomy-of-unleash.mdx index 76b4679239..0b7fbf3081 100644 --- a/website/docs/topics/the-anatomy-of-unleash.mdx +++ b/website/docs/topics/the-anatomy-of-unleash.mdx @@ -90,7 +90,7 @@ Feature toggle strategies are **permissive**: As long as **one** strategy resolv We can exemplify this difference with the logical operators AND and OR: - For a feature toggle, if Strategy1 OR Strategy2 OR .. OR StrategyN is true, **then the feature is enabled**. -- For a strategy, it can be evaluated **if and only if** constraint 1 AND constraint 2 AND .. AND constraint `n` are met. +- For a strategy, it can be evaluated **if and only if** Constraint1 AND Constraint2 AND .. AND ConstraintN are met. Note that even if all the constraints are met, the strategy itself might not resolve to true: that will depend on the strategy and the provided context.