[clang-tools-extra] b24d89a - Update wrong Unicode code point in confusable-identifiers.rst
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 28 12:33:09 PST 2022
Author: Raul Ferrando
Date: 2022-11-28T15:32:40-05:00
New Revision: b24d89a0428c6f5d0367ece123e566d773c4bcbb
URL: https://github.com/llvm/llvm-project/commit/b24d89a0428c6f5d0367ece123e566d773c4bcbb
DIFF: https://github.com/llvm/llvm-project/commit/b24d89a0428c6f5d0367ece123e566d773c4bcbb.diff
LOG: Update wrong Unicode code point in confusable-identifiers.rst
In confusable-identifiers.rst the description refers to wrong Unicode code point.
The shown code point is U+1D41F, not U+1234.
Updated the code point and it's description.
Fixes #58934
Differential Revision: https://reviews.llvm.org/D138838
Added:
Modified:
clang-tools-extra/docs/clang-tidy/checks/misc/confusable-identifiers.rst
Removed:
################################################################################
diff --git a/clang-tools-extra/docs/clang-tidy/checks/misc/confusable-identifiers.rst b/clang-tools-extra/docs/clang-tidy/checks/misc/confusable-identifiers.rst
index b6d3e9981acf9..1b2d961278356 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/misc/confusable-identifiers.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/misc/confusable-identifiers.rst
@@ -12,4 +12,4 @@ Example:
.. code-block:: text
int fo; // Initial character is U+0066 (LATIN SMALL LETTER F).
- int 𝐟o; // Initial character is U+1234 (SUPER COOL AWESOME UPPERCASE NOT LATIN F) not U+0066 (LATIN SMALL LETTER F).
+ int 𝐟o; // Initial character is U+1D41F (MATHEMATICAL BOLD SMALL F) not U+0066 (LATIN SMALL LETTER F).
More information about the cfe-commits
mailing list