summaryrefslogtreecommitdiff
path: root/docs/Tooling.rst
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-01-02 13:07:47 +0000
committerSean Silva <silvas@purdue.edu>2013-01-02 13:07:47 +0000
commit159cc9e6f6c9cdfe571a90d341c29b31bf1007fe (patch)
treeda749433864677d492bee0125c4fc2192ec05387 /docs/Tooling.rst
parent9cc4c39c8b783355ffcb5cf3cb6d7989a067eac1 (diff)
downloadclang-159cc9e6f6c9cdfe571a90d341c29b31bf1007fe.tar.gz
clang-159cc9e6f6c9cdfe571a90d341c29b31bf1007fe.tar.bz2
clang-159cc9e6f6c9cdfe571a90d341c29b31bf1007fe.tar.xz
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/Tooling.rst')
-rw-r--r--docs/Tooling.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/Tooling.rst b/docs/Tooling.rst
index b2884b6710..b1281fc09e 100644
--- a/docs/Tooling.rst
+++ b/docs/Tooling.rst
@@ -33,7 +33,7 @@ Do not use LibClang when you...:
Clang Plugins
-------------
-`Clang Plugins <ClangPlugins.html>`_ allow you to run additional actions on the
+:doc:`Clang Plugins <ClangPlugins>` allow you to run additional actions on the
AST as part of a compilation. Plugins are dynamic libraries that are loaded at
runtime by the compiler, and they're easy to integrate into your build
environment.
@@ -60,7 +60,7 @@ Do not use Clang Plugins when you...:
LibTooling
----------
-`LibTooling <LibTooling.html>`_ is a C++ interface aimed at writing standalone
+:doc:`LibTooling <LibTooling>` is a C++ interface aimed at writing standalone
tools, as well as integrating into services that run clang tools. Canonical
examples of when to use LibTooling:
@@ -85,7 +85,7 @@ Do not use LibTooling when you...:
Clang Tools
-----------
-`Clang tools <ClangTools.html>`_ are a collection of specific developer tools
+:doc:`Clang tools <ClangTools>` are a collection of specific developer tools
built on top of the LibTooling infrastructure as part of the Clang project.
They are targeted at automating and improving core development activities of
C/C++ developers.