Skip to content

Commit e6ec441

Browse files
committed
fix some typos in the doc
llvm-svn: 292014
1 parent 0ab3b77 commit e6ec441

8 files changed

+10
-10
lines changed

llvm/docs/AMDGPUUsage.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ SOPP Instruction Examples
204204
For full list of supported instructions, refer to "SOPP Instructions" in ISA Manual.
205205

206206
Unless otherwise mentioned, little verification is performed on the operands
207-
of SOPP Instrucitons, so it is up to the programmer to be familiar with the
207+
of SOPP Instructions, so it is up to the programmer to be familiar with the
208208
range or acceptable values.
209209

210210
Vector ALU Instruction Examples

llvm/docs/CoverageMappingFormat.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ to know how it works under the hood. A prior knowledge of how Clang's profile
2121
guided optimization works is useful, but not required.
2222

2323
We start by showing how to use LLVM and Clang for code coverage analysis,
24-
then we briefly desribe LLVM's code coverage mapping format and the
24+
then we briefly describe LLVM's code coverage mapping format and the
2525
way that Clang and LLVM's code coverage tool work with this format. After
2626
the basics are down, more advanced features of the coverage mapping format
2727
are discussed - such as the data structures, LLVM IR representation and

llvm/docs/GettingStarted.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ to your path, you can push committed changes upstream with `git llvm push`.
738738
While this is using SVN under the hood, it does not require any interaction from
739739
you with git-svn.
740740
After a few minutes, `git pull` should get back the changes as they were
741-
commited. Note that a current limitation is that `git` does not directly record
741+
committed. Note that a current limitation is that `git` does not directly record
742742
file rename, and thus it is propagated to SVN as a combination of delete-add
743743
instead of a file rename.
744744

llvm/docs/ProgrammersManual.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ completing the walk over the archive they could use the ``joinErrors`` utility:
864864
865865
The ``joinErrors`` routine builds a special error type called ``ErrorList``,
866866
which holds a list of user defined errors. The ``handleErrors`` routine
867-
recognizes this type and will attempt to handle each of the contained erorrs in
867+
recognizes this type and will attempt to handle each of the contained errors in
868868
order. If all contained errors can be handled, ``handleErrors`` will return
869869
``Error::success()``, otherwise ``handleErrors`` will concatenate the remaining
870870
errors and return the resulting ``ErrorList``.

llvm/docs/Proposals/GitHubMove.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This proposal relates only to moving the hosting of our source-code repository
3030
from SVN hosted on our own servers to Git hosted on GitHub. We are not proposing
3131
using GitHub's issue tracker, pull-requests, or code-review.
3232

33-
Contributers will continue to earn commit access on demand under the Developer
33+
Contributors will continue to earn commit access on demand under the Developer
3434
Policy, except that that a GitHub account will be required instead of SVN
3535
username/password-hash.
3636

@@ -433,7 +433,7 @@ Concerns
433433
* Using the monolithic repository may add overhead for those *integrating* a
434434
standalone sub-project, even if they aren't contributing to it, due to the
435435
same disk space concern as the point above. The availability of the
436-
sub-project Git mirror addesses this, even without SVN access.
436+
sub-project Git mirror addresses this, even without SVN access.
437437
* Preservation of the existing read/write SVN-based workflows relies on the
438438
GitHub SVN bridge, which is an extra dependency. Maintaining this locks us
439439
into GitHub and could restrict future workflow changes.

llvm/docs/TestingGuide.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ default outputs a ``ModuleID``:
313313
ret i32 0
314314
}
315315
316-
``ModuleID`` can unexpetedly match against ``CHECK`` lines. For example:
316+
``ModuleID`` can unexpectedly match against ``CHECK`` lines. For example:
317317

318318
.. code-block:: llvm
319319

llvm/docs/WritingAnLLVMBackend.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -593,12 +593,12 @@ the order in the definition of ``IntRegs`` in the target description file.
593593
FPRegsClass FPRegsRegClass;
594594
IntRegsClass IntRegsRegClass;
595595
...
596-
// IntRegs Sub-register Classess...
596+
// IntRegs Sub-register Classes...
597597
static const TargetRegisterClass* const IntRegsSubRegClasses [] = {
598598
NULL
599599
};
600600
...
601-
// IntRegs Super-register Classess...
601+
// IntRegs Super-register Classes..
602602
static const TargetRegisterClass* const IntRegsSuperRegClasses [] = {
603603
NULL
604604
};

llvm/docs/YamlIO.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ it is parsed. This allows dynamic types of nodes. But the YAML I/O model uses
731731
static typing, so there are limits to how you can use tags with the YAML I/O
732732
model. Recently, we added support to YAML I/O for checking/setting the optional
733733
tag on a map. Using this functionality it is even possbile to support different
734-
mappings, as long as they are convertable.
734+
mappings, as long as they are convertible.
735735

736736
To check a tag, inside your mapping() method you can use io.mapTag() to specify
737737
what the tag should be. This will also add that tag when writing yaml.

0 commit comments

Comments
 (0)