Remove strange visible backslashes

This commit is contained in:
alexey-milovidov 2020-07-13 17:58:37 +03:00 committed by GitHub
parent 3a3d815c76
commit 48c91881a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,14 +22,14 @@ Strings are compared by bytes. A shorter string is smaller than all strings that
## equals, a = b and a == b operator {#function-equals}
## notEquals, a != b and a \<\> b operator {#function-notequals}
## notEquals, a != b and a <> b operator {#function-notequals}
## less, \< operator {#function-less}
## less, < operator {#function-less}
## greater, \> operator {#function-greater}
## greater, > operator {#function-greater}
## lessOrEquals, \<= operator {#function-lessorequals}
## lessOrEquals, <= operator {#function-lessorequals}
## greaterOrEquals, \>= operator {#function-greaterorequals}
## greaterOrEquals, >= operator {#function-greaterorequals}
[Original article](https://clickhouse.tech/docs/en/query_language/functions/comparison_functions/) <!--hide-->