Skip to content

Commit

Permalink
add table instead of list
Browse files Browse the repository at this point in the history
  • Loading branch information
mathnogueira committed Jun 3, 2024
1 parent 77b9e65 commit d6a2b25
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/docs/concepts/selectors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1386,13 +1386,13 @@ flowchart TD

In previous examples, It was always used the equality comparator (`=`), however, the selector language supports a number of comparisons:

* = (equal)
* != (not equal)
* < (less than)
* <= (less or equal to)
* > (greater than)
* >= (greater or equal to)
* contains
* not-contains

> Both `contains` and `not-contains` are operators for string comparison. So both sides of the operation must be strings
| Operation | Description |
| :------------ | :--------------------------------------------------------------- |
| `=` | both values are equal |
| `!=` | both values are different |
| `<` | value on the left is less than the value on the right |
| `<=` | value on the left is less or equal to the value on the right |
| `>` | value on the left is greater than the value on the right |
| `>=` | value on the left is greater or equal to the value on the right |
| `contains` | string on the left contains the string on the right |
| `not-contains`| string on the left does not contain the string on the right |

0 comments on commit d6a2b25

Please sign in to comment.