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:
Aaron Mildenstein 2015-04-14 12:16:46 -06:00 committed by Jordan Sissel
parent d0dbb252a0
commit 1a03840c2d

View file

@ -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 `(...)`.