1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-04 00:18:40 +01:00

Update website/docs/topics/the-anatomy-of-unleash.mdx

This commit is contained in:
Thomas Heartman 2022-10-13 15:48:23 +02:00 committed by GitHub
parent b6622009f1
commit 3ca7727099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: 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 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. 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.