diff options
author | Sean Silva <chisophugis@gmail.com> | 2015-01-28 10:36:41 +0000 |
---|---|---|
committer | Sean Silva <chisophugis@gmail.com> | 2015-01-28 10:36:41 +0000 |
commit | 52c7dcd55d2c23c08353fe4aaf2802246d71ce08 (patch) | |
tree | b82be00404b6ab366a692aaefc79363acf99cd67 /llvm/docs/ProgrammersManual.rst | |
parent | b1548edf25bebe6b5d1139bf6dbdac6edf5ea6a4 (diff) | |
download | bcm5719-llvm-52c7dcd55d2c23c08353fe4aaf2802246d71ce08.tar.gz bcm5719-llvm-52c7dcd55d2c23c08353fe4aaf2802246d71ce08.zip |
[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!
llvm-svn: 227305
Diffstat (limited to 'llvm/docs/ProgrammersManual.rst')
-rw-r--r-- | llvm/docs/ProgrammersManual.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index ff3f7e93915..f140cf509d2 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/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 <isa>`_ and our `detailed document -<http://llvm.org/docs/HowToSetUpLLVMStyleRTTI.html>`_ which describes how you -can implement this pattern for use with the LLVM helpers. +section on :ref:`isa and dyn_cast <isa>` and our :doc:`detailed document +<HowToSetUpLLVMStyleRTTI>` which describes how you can implement this +pattern for use with the LLVM helpers. .. _coreclasses: |