diff --git a/doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md b/doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md index 34656e7..86aac03 100644 --- a/doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md +++ b/doc/_admin-guide/080_Log/030_Filters/002_Comparing_macro_values.md @@ -103,11 +103,13 @@ Note that: The following operators are available: -| Numerical operator |String operator | Meaning| -|--------------------|-----------------|----------------------| -| == | eq | Equals| -| != | ne | Not equal to| -| \> | gt | Greater than| -| \< | lt | Less than| -| \>= | ge | Greater than or equal| -| =\< | le | Less than or equal| +| Numerical Operator | String Operator | Meaning | +|--------------------|-----------------|----------------------------------| +| == | eq | Equals | +| === | | Equals and same type | +| != | ne | Not equal to | +| !== | | Not equal to and same type | +| > | gt | Greater than | +| < | lt | Less than | +| >= | ge | Greater than or equal to | +| <= | le | Less than or equal to |