Update wrong Unicode code point in confusable-identifiers.rst
authorRaul Ferrando <rferrandop@protonmail.com>
Mon, 28 Nov 2022 20:32:40 +0000 (15:32 -0500)
committerAaron Ballman <aaron@aaronballman.com>
Mon, 28 Nov 2022 20:32:40 +0000 (15:32 -0500)
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

clang-tools-extra/docs/clang-tidy/checks/misc/confusable-identifiers.rst

index b6d3e99..1b2d961 100644 (file)
@@ -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).