Skip to content

Commit

Permalink
Comparison operators were not properly displayed
Browse files Browse the repository at this point in the history
This encapsulates all comparison operators in back-ticks to make them visible.

Fixes elastic#3013
  • Loading branch information
untergeek authored and jordansissel committed Apr 14, 2015
1 parent e233de9 commit 543bc56
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/asciidoc/static/configuration.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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 `(...)`.
Expand Down

0 comments on commit 543bc56

Please sign in to comment.