[Coding style] Fix incorrect link syntax
authorFelipe de Azevedo Piovezan <fpiovezan@apple.com>
Sat, 17 Jun 2023 12:26:05 +0000 (08:26 -0400)
committerFelipe de Azevedo Piovezan <fpiovezan@apple.com>
Sat, 17 Jun 2023 12:26:05 +0000 (08:26 -0400)
llvm/docs/CodingStandards.rst

index b02386e..9d87142 100644 (file)
@@ -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 different source files are initialized in `arbitrary order`
-<https://yosefk.com/c++fqa/ctors.html#fqa-10.12>, making the code more
+Globals in different source files are initialized in `arbitrary order
+<https://yosefk.com/c++fqa/ctors.html#fqa-10.12>`_, making the code more
 difficult to reason about.
 
 Static constructors have negative impact on launch time of programs that use