Skip to content

Commit 12ee44e

Browse files
authored
Update 002_Comparing_macro_values.md (#223)
added missing filter operators
2 parents e2dfc48 + 4644d84 commit 12ee44e

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,13 @@ Note that:
103103

104104
The following operators are available:
105105

106-
| Numerical operator |String operator | Meaning|
107-
|--------------------|-----------------|----------------------|
108-
| == | eq | Equals|
109-
| != | ne | Not equal to|
110-
| \> | gt | Greater than|
111-
| \< | lt | Less than|
112-
| \>= | ge | Greater than or equal|
113-
| =\< | le | Less than or equal|
106+
| Numerical Operator | String Operator | Meaning |
107+
|--------------------|-----------------|----------------------------------|
108+
| == | eq | Equals |
109+
| === | | Equals and same type |
110+
| != | ne | Not equal to |
111+
| !== | | Not equal to and same type |
112+
| > | gt | Greater than |
113+
| < | lt | Less than |
114+
| >= | ge | Greater than or equal to |
115+
| <= | le | Less than or equal to |

0 commit comments

Comments
 (0)