From a8104c5ab08a4a25c9c9b17642457f185ed7a5db Mon Sep 17 00:00:00 2001 From: Sean Silva Date: Wed, 28 Jan 2015 10:36:41 +0000 Subject: [PATCH] [docs] Use slightly more proper .rst markup Again, I'd like to emphasize to everyone that this sort of markup change is *not* what you should be concerned about when writing docs. Focus on *content*. I applaud Chandler for focusing on the fantastic content of this new section! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227305 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ProgrammersManual.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst index ff3f7e93915..f140cf509d2 100644 --- a/docs/ProgrammersManual.rst +++ b/docs/ProgrammersManual.rst @@ -2546,9 +2546,9 @@ generate significantly more efficient code. We have also found that a large amount of our usage of type hierarchies fits better with tag-based pattern matching rather than dynamic dispatch across a common interface. Within LLVM we have built custom helpers to facilitate this design. See this document's -section on `isa and dyn_cast `_ and our `detailed document -`_ which describes how you -can implement this pattern for use with the LLVM helpers. +section on :ref:`isa and dyn_cast ` and our :doc:`detailed document +` which describes how you can implement this +pattern for use with the LLVM helpers. .. _coreclasses: