[llvm] f8a1d02 - [Coding style] Fix incorrect link syntax
Felipe de Azevedo Piovezan via llvm-commits
llvm-commits at lists.llvm.org
Sat Jun 17 05:26:50 PDT 2023
Author: Felipe de Azevedo Piovezan
Date: 2023-06-17T08:26:05-04:00
New Revision: f8a1d021ed349f1f05bb1c45feaaadc6c07fb567
URL: https://github.com/llvm/llvm-project/commit/f8a1d021ed349f1f05bb1c45feaaadc6c07fb567
DIFF: https://github.com/llvm/llvm-project/commit/f8a1d021ed349f1f05bb1c45feaaadc6c07fb567.diff
LOG: [Coding style] Fix incorrect link syntax
Added:
Modified:
llvm/docs/CodingStandards.rst
Removed:
################################################################################
diff --git a/llvm/docs/CodingStandards.rst b/llvm/docs/CodingStandards.rst
index b02386ed52985..9d87142b0984f 100644
--- a/llvm/docs/CodingStandards.rst
+++ b/llvm/docs/CodingStandards.rst
@@ -569,8 +569,8 @@ Static constructors and destructors (e.g., global variables whose types have a
constructor or destructor) should not be added to the code base, and should be
removed wherever possible.
-Globals in
diff erent source files are initialized in `arbitrary order`
-<https://yosefk.com/c++fqa/ctors.html#fqa-10.12>, making the code more
+Globals in
diff erent source files are initialized in `arbitrary order
+<https://yosefk.com/c++fqa/ctors.html#fqa-10.12>`_, making the code more
diff icult to reason about.
Static constructors have negative impact on launch time of programs that use
More information about the llvm-commits
mailing list