Skip to content

Commit 19319a1

Browse files
authored
Update arithmetic.md (#2452)
Change the position of the escape
1 parent 3c9c107 commit 19319a1

File tree

1 file changed

+2
-2
lines changed
  • docs/en/sql-reference/10-sql-commands/30-query-operators

1 file changed

+2
-2
lines changed

docs/en/sql-reference/10-sql-commands/30-query-operators/arithmetic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ import FunctionDescription from '@site/src/components/FunctionDescription';
2424
| **|** | Computes the bitwise or of numeric expression | **32 | 3** | 35 |
2525
| **#** | Computes the bitwise xor of numeric expression | **17 # 5** | 20 |
2626
| **~** | Computes the bitwise not of numeric expression | **~ 1** | ~2 |
27-
| `**<<**` | Computes the bitwise shift left of numeric expression | `**1 << 4**` | 16 |
27+
| **`<<`** | Computes the bitwise shift left of numeric expression | **1 `<<` 4** | 16 |
2828
| **>>** | Computes the bitwise shift right of numeric expression | **8 >> 2** | 2 |
29-
| `**<->**` | Computes the Euclidean distance (L2 norm) between vectors | `**[1, 2] <-> [2, 3]**` | 1.4142135 |
29+
| **`<->`** | Computes the Euclidean distance (L2 norm) between vectors | **[1, 2] `<->` [2, 3]** | 1.4142135 |

0 commit comments

Comments
 (0)