Skip to content

Commit 843b751

Browse files
committed
Fix some typos in the doc
llvm-svn: 279943
1 parent 61122c4 commit 843b751

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

llvm/docs/CodeGenerator.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2396,7 +2396,7 @@ the following exceptions. Callee saved registers are spilled after the frame is
23962396
created. This allows the llvm epilog/prolog support to be common with other
23972397
targets. The base pointer callee saved register r31 is saved in the TOC slot of
23982398
linkage area. This simplifies allocation of space for the base pointer and
2399-
makes it convenient to locate programatically and during debugging.
2399+
makes it convenient to locate programmatically and during debugging.
24002400

24012401
Dynamic Allocation
24022402
^^^^^^^^^^^^^^^^^^

llvm/docs/MemorySSA.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Going from the top down:
136136
- ``2 = MemoryDef(6)`` notes that ``store i8 0, i8* %p1`` is a definition,
137137
and its reaching definition before it is ``6``, or the ``MemoryPhi`` after
138138
``while.cond``. (See the `Build-time use optimization`_ and `Precision`_
139-
sections below for why this ``MemoryDef`` isn't linked to a seperate,
139+
sections below for why this ``MemoryDef`` isn't linked to a separate,
140140
disambiguated ``MemoryPhi``.)
141141
- ``3 = MemoryDef(6)`` notes that ``store i8 0, i8* %p2`` is a definition; its
142142
reaching definition is also ``6``.

llvm/docs/_static/llvm.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
8282
h3+div, h3+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
8383
h4+div, h4+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
8484

85-
/* It is preferrable to use <pre class="doc_code"> everywhere instead of the
85+
/* It is preferable to use <pre class="doc_code"> everywhere instead of the
8686
* <div class="doc_code"><pre>...</ptr></div> construct.
8787
*
8888
* Once all docs use <pre> for code regions, this style can be merged with the

llvm/docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,5 +249,5 @@
249249
# If true, show URL addresses after external links.
250250
#man_show_urls = False
251251

252-
# FIXME: Define intersphinx configration.
252+
# FIXME: Define intersphinx configuration.
253253
intersphinx_mapping = {}

llvm/docs/doxygen.cfg.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1937,7 +1937,7 @@ PREDEFINED =
19371937
EXPAND_AS_DEFINED =
19381938

19391939
# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
1940-
# remove all refrences to function-like macros that are alone on a line, have an
1940+
# remove all references to function-like macros that are alone on a line, have an
19411941
# all uppercase name, and do not end with a semicolon. Such function macros are
19421942
# typically used for boiler-plate code, and will confuse the parser if not
19431943
# removed.

llvm/docs/tutorial/LangImpl06.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ User-defined Operators: the Idea
3232

3333
The "operator overloading" that we will add to Kaleidoscope is more
3434
general than languages like C++. In C++, you are only allowed to
35-
redefine existing operators: you can't programatically change the
35+
redefine existing operators: you can't programmatically change the
3636
grammar, introduce new operators, change precedence levels, etc. In this
3737
chapter, we will add this capability to Kaleidoscope, which will let the
3838
user round out the set of operators that are supported.

llvm/docs/tutorial/OCamlLangImpl6.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ User-defined Operators: the Idea
3232

3333
The "operator overloading" that we will add to Kaleidoscope is more
3434
general than languages like C++. In C++, you are only allowed to
35-
redefine existing operators: you can't programatically change the
35+
redefine existing operators: you can't programmatically change the
3636
grammar, introduce new operators, change precedence levels, etc. In this
3737
chapter, we will add this capability to Kaleidoscope, which will let the
3838
user round out the set of operators that are supported.

0 commit comments

Comments
 (0)