From c660771848182953070a7b7d0cab0d8b2dd6116f Mon Sep 17 00:00:00 2001 From: Grace Cai Date: Fri, 2 Aug 2024 19:00:38 +0800 Subject: [PATCH] bit-functions-and-operators: fix PDF build issue (#18442) --- functions-and-operators/bit-functions-and-operators.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions-and-operators/bit-functions-and-operators.md b/functions-and-operators/bit-functions-and-operators.md index 1627ff31d831d..78cb52f893c7e 100644 --- a/functions-and-operators/bit-functions-and-operators.md +++ b/functions-and-operators/bit-functions-and-operators.md @@ -13,9 +13,9 @@ TiDB supports all of the [bit functions and operators](https://dev.mysql.com/doc | Name | Description | | :------| :------------- | | [`BIT_COUNT()`](#bit_count) | Return the number of bits that are set as 1 | -| [`&`](#-bitwise-and) | Bitwise AND | -| [`~`](#-bitwise-inversion) | Bitwise inversion | -| [`\|`](#-bitwise-or) | Bitwise OR | +| [&](#-bitwise-and) | Bitwise AND | +| [~](#-bitwise-inversion) | Bitwise inversion | +| [\|](#-bitwise-or) | Bitwise OR | | [`^`](#-bitwise-xor) | Bitwise XOR | | [`<<`](#-left-shift) | Left shift | | [`>>`](#-right-shift) | Right shift |