diff options
author | Sean Silva <silvas@purdue.edu> | 2013-01-02 13:07:47 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2013-01-02 13:07:47 +0000 |
commit | 159cc9e6f6c9cdfe571a90d341c29b31bf1007fe (patch) | |
tree | da749433864677d492bee0125c4fc2192ec05387 /docs/InternalsManual.rst | |
parent | 9cc4c39c8b783355ffcb5cf3cb6d7989a067eac1 (diff) |
docs: Fix up HTML links to proper reST links.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171382 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/InternalsManual.rst')
-rw-r--r-- | docs/InternalsManual.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/InternalsManual.rst b/docs/InternalsManual.rst index bbfcc54b65..3a914170e2 100644 --- a/docs/InternalsManual.rst +++ b/docs/InternalsManual.rst @@ -525,7 +525,7 @@ the ``CharSourceRange`` class. The Driver Library ================== -The clang Driver and library are documented `here <DriverInternals.html>`_. +The clang Driver and library are documented :doc:`here <DriverInternals>`. Precompiled Headers =================== @@ -534,7 +534,7 @@ Clang supports two implementations of precompiled headers. The default implementation, precompiled headers (:doc:`PCH <PCHInternals>`) uses a serialized representation of Clang's internal data structures, encoded with the `LLVM bitstream format <http://llvm.org/docs/BitCodeFormat.html>`_. -Pretokenized headers (`PTH <PTHInternals.html>`_), on the other hand, contain a +Pretokenized headers (:doc:`PTH <PTHInternals>`), on the other hand, contain a serialized representation of the tokens encountered when preprocessing a header (and anything that header includes). |