diff --git a/teps/0145-cel-in-whenexpression.md b/teps/0145-cel-in-whenexpression.md index 6f24d49ed..e16ed4781 100644 --- a/teps/0145-cel-in-whenexpression.md +++ b/teps/0145-cel-in-whenexpression.md @@ -109,7 +109,7 @@ when: - cel: "\”duh\” not in [\"foo\", \“bar\”]” ``` -**Note:** The `WhenExpressions` contains a list of `WhenExpression`, if any `WhenExpression` is false it will return false. So we’re using ANY to evaluate the list of `WhenExpressions`. And this will remain the same for this proposal. For each WhenExpression, there will be one CEL expression which can fully replace the current when expression functionalities. +**Note:** The `WhenExpressions` contains a list of `WhenExpression`, if all `WhenExpressions` are true it will return true and allow execution. So we’re using AND to evaluate the list of `WhenExpressions`. And this will remain the same for this proposal. Each existing `WhenExpression` can be replaced with a CEL expression. #### Use CEL to Support ANY operator