[llvm] r279943 - Fix some typos in the doc

Sylvestre Ledru via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 28 13:29:18 PDT 2016


Author: sylvestre
Date: Sun Aug 28 15:29:18 2016
New Revision: 279943

URL: http://llvm.org/viewvc/llvm-project?rev=279943&view=rev
Log:
Fix some typos in the doc

Modified:
    llvm/trunk/docs/CodeGenerator.rst
    llvm/trunk/docs/MemorySSA.rst
    llvm/trunk/docs/_static/llvm.css
    llvm/trunk/docs/conf.py
    llvm/trunk/docs/doxygen.cfg.in
    llvm/trunk/docs/tutorial/LangImpl06.rst
    llvm/trunk/docs/tutorial/OCamlLangImpl6.rst

Modified: llvm/trunk/docs/CodeGenerator.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodeGenerator.rst?rev=279943&r1=279942&r2=279943&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.rst (original)
+++ llvm/trunk/docs/CodeGenerator.rst Sun Aug 28 15:29:18 2016
@@ -2396,7 +2396,7 @@ the following exceptions.  Callee saved
 created.  This allows the llvm epilog/prolog support to be common with other
 targets.  The base pointer callee saved register r31 is saved in the TOC slot of
 linkage area.  This simplifies allocation of space for the base pointer and
-makes it convenient to locate programatically and during debugging.
+makes it convenient to locate programmatically and during debugging.
 
 Dynamic Allocation
 ^^^^^^^^^^^^^^^^^^

Modified: llvm/trunk/docs/MemorySSA.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/MemorySSA.rst?rev=279943&r1=279942&r2=279943&view=diff
==============================================================================
--- llvm/trunk/docs/MemorySSA.rst (original)
+++ llvm/trunk/docs/MemorySSA.rst Sun Aug 28 15:29:18 2016
@@ -136,7 +136,7 @@ Going from the top down:
 - ``2 = MemoryDef(6)`` notes that ``store i8 0, i8* %p1`` is a definition,
   and its reaching definition before it is ``6``, or the ``MemoryPhi`` after
   ``while.cond``. (See the `Build-time use optimization`_ and `Precision`_
-  sections below for why this ``MemoryDef`` isn't linked to a seperate,
+  sections below for why this ``MemoryDef`` isn't linked to a separate,
   disambiguated ``MemoryPhi``.)
 - ``3 = MemoryDef(6)`` notes that ``store i8 0, i8* %p2`` is a definition; its
   reaching definition is also ``6``.

Modified: llvm/trunk/docs/_static/llvm.css
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/_static/llvm.css?rev=279943&r1=279942&r2=279943&view=diff
==============================================================================
--- llvm/trunk/docs/_static/llvm.css (original)
+++ llvm/trunk/docs/_static/llvm.css Sun Aug 28 15:29:18 2016
@@ -82,7 +82,7 @@ h2+div, h2+p {text-align: left; padding-
 h3+div, h3+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
 h4+div, h4+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
 
-/* It is preferrable to use <pre class="doc_code"> everywhere instead of the
+/* It is preferable to use <pre class="doc_code"> everywhere instead of the
  * <div class="doc_code"><pre>...</ptr></div> construct.
  *
  * Once all docs use <pre> for code regions, this style can  be merged with the

Modified: llvm/trunk/docs/conf.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/conf.py?rev=279943&r1=279942&r2=279943&view=diff
==============================================================================
--- llvm/trunk/docs/conf.py (original)
+++ llvm/trunk/docs/conf.py Sun Aug 28 15:29:18 2016
@@ -249,5 +249,5 @@ for name in os.listdir(command_guide_pat
 # If true, show URL addresses after external links.
 #man_show_urls = False
 
-# FIXME: Define intersphinx configration.
+# FIXME: Define intersphinx configuration.
 intersphinx_mapping = {}

Modified: llvm/trunk/docs/doxygen.cfg.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/doxygen.cfg.in?rev=279943&r1=279942&r2=279943&view=diff
==============================================================================
--- llvm/trunk/docs/doxygen.cfg.in (original)
+++ llvm/trunk/docs/doxygen.cfg.in Sun Aug 28 15:29:18 2016
@@ -1937,7 +1937,7 @@ PREDEFINED             =
 EXPAND_AS_DEFINED      =
 
 # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
-# remove all refrences to function-like macros that are alone on a line, have an
+# remove all references to function-like macros that are alone on a line, have an
 # all uppercase name, and do not end with a semicolon. Such function macros are
 # typically used for boiler-plate code, and will confuse the parser if not
 # removed.

Modified: llvm/trunk/docs/tutorial/LangImpl06.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl06.rst?rev=279943&r1=279942&r2=279943&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl06.rst (original)
+++ llvm/trunk/docs/tutorial/LangImpl06.rst Sun Aug 28 15:29:18 2016
@@ -32,7 +32,7 @@ User-defined Operators: the Idea
 
 The "operator overloading" that we will add to Kaleidoscope is more
 general than languages like C++. In C++, you are only allowed to
-redefine existing operators: you can't programatically change the
+redefine existing operators: you can't programmatically change the
 grammar, introduce new operators, change precedence levels, etc. In this
 chapter, we will add this capability to Kaleidoscope, which will let the
 user round out the set of operators that are supported.

Modified: llvm/trunk/docs/tutorial/OCamlLangImpl6.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/OCamlLangImpl6.rst?rev=279943&r1=279942&r2=279943&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/OCamlLangImpl6.rst (original)
+++ llvm/trunk/docs/tutorial/OCamlLangImpl6.rst Sun Aug 28 15:29:18 2016
@@ -32,7 +32,7 @@ User-defined Operators: the Idea
 
 The "operator overloading" that we will add to Kaleidoscope is more
 general than languages like C++. In C++, you are only allowed to
-redefine existing operators: you can't programatically change the
+redefine existing operators: you can't programmatically change the
 grammar, introduce new operators, change precedence levels, etc. In this
 chapter, we will add this capability to Kaleidoscope, which will let the
 user round out the set of operators that are supported.




More information about the llvm-commits mailing list