Skip to content

Commit 1d92e11

Browse files
authored
Making operations into table and correcting info about or and
1 parent 035a452 commit 1d92e11

File tree

1 file changed

+24
-18
lines changed

1 file changed

+24
-18
lines changed

README.md

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,24 +43,30 @@ Here are some examples:
4343

4444
All the operations can be written capitalized or lowercase (ex: `eq` or `EQ` can be used)
4545

46-
Logical Operations supported are `AND OR`
47-
48-
Compare Expression and their definitions (a|b means you can use either one of the two a or b):
49-
50-
```
51-
eq|==: equals to
52-
ne|!=: not equals to
53-
lt|<: less than
54-
gt|>: greater than
55-
le|<=: less than equal to
56-
ge|>=: greater than equal to
57-
co: contains
58-
sw: starts with
59-
ew: ends with
60-
in: in a list
61-
pr: present
62-
not: not of a logical expression
63-
```
46+
Logical Operations supported are `and` `or`
47+
48+
Compare Expression and their definitions
49+
50+
| expression | meaning |
51+
-------------|------------
52+
| eq | equals to |
53+
| == | equals to |
54+
| ne | not equal to |
55+
| != | not equal to |
56+
| lt | less than |
57+
| < | less than |
58+
| gt | greater than |
59+
| > | greter than |
60+
| le | less than or equal to |
61+
| <= | less than or equal to |
62+
| ge | greater than or equal to|
63+
| >= | greater than or equal to|
64+
| co | contains |
65+
| sw | starts with |
66+
| ew | ends with |
67+
| in | in a list |
68+
| pr | present, will be true if you have a key as true |
69+
| not | not of a logical expression |
6470

6571
## How to use it
6672

0 commit comments

Comments
 (0)