mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
Comparison operators were not properly displayed
This encapsulates all comparison operators in back-ticks to make them visible. Fixes #3013
This commit is contained in:
parent
d0dbb252a0
commit
1a03840c2d
1 changed files with 5 additions and 5 deletions
|
@ -357,17 +357,17 @@ What's an expression? Comparison tests, boolean logic, and so on!
|
|||
|
||||
You can use the following comparison operators:
|
||||
|
||||
* equality: ==, !=, <, >, <=, >=
|
||||
* regexp: =\~, !~
|
||||
* inclusion: in, not in
|
||||
* equality: `==`, `!=`, `<`, `>`, `<=`, `>=`
|
||||
* regexp: `=~`, `!~`
|
||||
* inclusion: `in`, `not in`
|
||||
|
||||
The supported boolean operators are:
|
||||
|
||||
* and, or, nand, xor
|
||||
* `and`, `or`, `nand`, `xor`
|
||||
|
||||
The supported unary operators are:
|
||||
|
||||
* !
|
||||
* `!`
|
||||
|
||||
Expressions can be long and complex. Expressions can contain other expressions,
|
||||
you can negate expressions with `!`, and you can group them with parentheses `(...)`.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue