[clang-tools-extra] d8fd214 - NFC: Change quotes from Unicode to ASCII
Kirill Bobyrev via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 29 02:43:05 PDT 2021
Author: Kirill Bobyrev
Date: 2021-07-29T11:37:10+02:00
New Revision: d8fd2146daaa28d118fd7c29d63e817a8c955b81
URL: https://github.com/llvm/llvm-project/commit/d8fd2146daaa28d118fd7c29d63e817a8c955b81
DIFF: https://github.com/llvm/llvm-project/commit/d8fd2146daaa28d118fd7c29d63e817a8c955b81.diff
LOG: NFC: Change quotes from Unicode to ASCII
This was causing some problems for Python scripts that we have.
Context: https://reviews.llvm.org/D106792
Added:
Modified:
clang-tools-extra/docs/clang-tidy/checks/abseil-no-internal-dependencies.rst
Removed:
################################################################################
diff --git a/clang-tools-extra/docs/clang-tidy/checks/abseil-no-internal-dependencies.rst b/clang-tools-extra/docs/clang-tidy/checks/abseil-no-internal-dependencies.rst
index bcf68ffd2d505..75e72adf5f36b 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/abseil-no-internal-dependencies.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/abseil-no-internal-dependencies.rst
@@ -4,7 +4,7 @@ abseil-no-internal-dependencies
===============================
Warns if code using Abseil depends on internal details. If something is in a
-namespace that includes the word “internal”, code is not allowed to depend upon
+namespace that includes the word "internal", code is not allowed to depend upon
it beaucse it’s an implementation detail. They cannot friend it, include it,
you mention it or refer to it in any way. Doing so violates Abseil's
compatibility guidelines and may result in breakage. See
More information about the cfe-commits
mailing list