r224895 - Fix markup from r224894.
Nico Weber
nicolasweber at gmx.de
Sat Dec 27 18:13:00 PST 2014
Author: nico
Date: Sat Dec 27 20:12:59 2014
New Revision: 224895
URL: http://llvm.org/viewvc/llvm-project?rev=224895&view=rev
Log:
Fix markup from r224894.
Modified:
cfe/trunk/docs/InternalsManual.rst
Modified: cfe/trunk/docs/InternalsManual.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/InternalsManual.rst?rev=224895&r1=224894&r2=224895&view=diff
==============================================================================
--- cfe/trunk/docs/InternalsManual.rst (original)
+++ cfe/trunk/docs/InternalsManual.rst Sat Dec 27 20:12:59 2014
@@ -795,9 +795,9 @@ preprocessor and notifies a client of th
Historically, the parser used to talk to an abstract ``Action`` interface that
had virtual methods for parse events, for example ``ActOnBinOp()``. When Clang
grew C++ support, the parser stopped supporting general ``Action`` clients --
-it now always talks to the :ref:`Sema` library. However, the Parser still
-accesses AST objects only through opaque types like ``ExprResult`` and
-``StmtResult``. Only ::ref::`Sema` looks at the AST node contents of these
+it now always talks to the :ref:`Sema libray <Sema>`. However, the Parser
+still accesses AST objects only through opaque types like ``ExprResult`` and
+``StmtResult``. Only :ref:`Sema <Sema>` looks at the AST node contents of these
wrappers.
.. _AST:
@@ -1602,8 +1602,8 @@ interacts with constant evaluation:
The Sema Library
================
-This library is called by the :ref:`Parser` library during parsing to do
-semantic analysis of the input. For valid programs, Sema builds an AST for
+This library is called by the :ref:`Parser library <Parser>` during parsing to
+do semantic analysis of the input. For valid programs, Sema builds an AST for
parsed constructs.
.. _CodeGen:
@@ -1611,7 +1611,7 @@ parsed constructs.
The CodeGen Library
===================
-CodeGen takes an :ref:`AST` as input and produces `LLVM IR code
+CodeGen takes an :ref:`AST <AST>` as input and produces `LLVM IR code
<//llvm.org/docs/LangRef.html>`_ from it.
How to change Clang
More information about the cfe-commits
mailing list