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


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to