diff options
author | Ed Maste <emaste@freebsd.org> | 2015-04-14 20:52:58 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2015-04-14 20:52:58 +0000 |
commit | 8ed40ce56d0f6360f56e785a229f9c03ed1d1889 (patch) | |
tree | 2f6bc297551fefb807a85a807c93a8115a287161 /llvm/docs/ProgrammersManual.rst | |
parent | 921b8e93bb3bb391ff91484c31b1f1893e18700a (diff) | |
download | bcm5719-llvm-8ed40ce56d0f6360f56e785a229f9c03ed1d1889.tar.gz bcm5719-llvm-8ed40ce56d0f6360f56e785a229f9c03ed1d1889.zip |
Correct 'teh' and other typos / repeated words.
Patch by Eitan Adler.
Differential Revision: http://reviews.llvm.org/D8514
llvm-svn: 234939
Diffstat (limited to 'llvm/docs/ProgrammersManual.rst')
-rw-r--r-- | llvm/docs/ProgrammersManual.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index 2c7e4a9954a..1e7e3ac1aea 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/docs/ProgrammersManual.rst @@ -940,7 +940,7 @@ There are a variety of ways to pass around and use strings in C and C++, and LLVM adds a few new options to choose from. Pick the first option on this list that will do what you need, they are ordered according to their relative cost. -Note that is is generally preferred to *not* pass strings around as ``const +Note that it is generally preferred to *not* pass strings around as ``const char*``'s. These have a number of problems, including the fact that they cannot represent embedded nul ("\0") characters, and do not have a length available efficiently. The general replacement for '``const char*``' is @@ -2651,7 +2651,7 @@ Important Derived Types Subclass of SequentialType for vector types. A vector type is similar to an ArrayType but is distinguished because it is a first class type whereas ArrayType is not. Vector types are used for vector operations and are usually - small vectors of of an integer or floating point type. + small vectors of an integer or floating point type. ``StructType`` Subclass of DerivedTypes for struct types. |