From: Raul Ferrando Date: Mon, 28 Nov 2022 20:32:40 +0000 (-0500) Subject: Update wrong Unicode code point in confusable-identifiers.rst X-Git-Tag: upstream/17.0.6~26121 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b24d89a0428c6f5d0367ece123e566d773c4bcbb;p=platform%2Fupstream%2Fllvm.git 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 --- 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 b6d3e99..1b2d961 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).