diff --git a/documentation/writing-policies-validate.md b/documentation/writing-policies-validate.md
index dcf86f1a66..1e42e954a8 100644
--- a/documentation/writing-policies-validate.md
+++ b/documentation/writing-policies-validate.md
@@ -36,9 +36,9 @@ There is no operator for `equals` as providing a field value in the pattern requ
## Anchors
| Anchor | Tag | Behavior |
|------------- |----- |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| Conditional | () | If tag with the given value is specified, then following resource elements must satisfy the conditions.
e.g.
(image):"*:latest"
imagePullPolicy: "!IfNotPresent"
If image has tag latest then, imagePullPolicy cannot be IfNotPresent. |
-| Equality | =() | if tag is specified, then it should have the provided value.
e.g.
=(hostPath):
path: "!/var/lib"
If hostPath is defined then the path cannot be /var/lib |
-| Existance | ^() | It can be specified on the list/array type only. If there exists at least one resource in the list that satisfies the pattern.
e.g.
^(containers):
- image: nginx:latest
There must exist at least one container with image nginx:latest. |
+| Conditional | () | If tag with the given value is specified, then following resource elements must satisfy the conditions.
e.g.
(image):"*:latest"
imagePullPolicy: "!IfNotPresent"
If image has tag latest then, imagePullPolicy cannot be IfNotPresent. |
+| Equality | =() | if tag is specified, then it should have the provided value.
e.g.
=(hostPath):
path: "!/var/lib"
If hostPath is defined then the path cannot be /var/lib |
+| Existance | ^() | It can be specified on the list/array type only. If there exists at least one resource in the list that satisfies the pattern.
e.g.
^(containers):
- image: nginx:latest
There must exist at least one container with image nginx:latest. |
## Example
The next rule prevents the creation of Deployment, StatefuleSet and DaemonSet resources without label 'app' in selector:
````yaml
@@ -98,13 +98,13 @@ spec :
validate:
pattern:
spec:
- containers:
- - ^(name): "*"
- resources:
- requests:
- memory: "$(<=./../../limits/memory)"
- limits:
- memory: "2048Mi"
+ ^(containers):
+ - (name): "*"
+ resources:
+ requests:
+ memory: "$(<=./../../limits/memory)"
+ limits:
+ memory: "2048Mi"
````
### Allow OR across overlay pattern