r260856 - Fix some typos in the clang doc

Sylvestre Ledru via cfe-commits cfe-commits at lists.llvm.org
Sun Feb 14 12:20:58 PST 2016


Author: sylvestre
Date: Sun Feb 14 14:20:58 2016
New Revision: 260856

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

Modified:
    cfe/trunk/docs/ClangFormatStyleOptions.rst
    cfe/trunk/docs/CrossCompilation.rst
    cfe/trunk/docs/LanguageExtensions.rst
    cfe/trunk/docs/SanitizerCoverage.rst

Modified: cfe/trunk/docs/ClangFormatStyleOptions.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ClangFormatStyleOptions.rst?rev=260856&r1=260855&r2=260856&view=diff
==============================================================================
--- cfe/trunk/docs/ClangFormatStyleOptions.rst (original)
+++ cfe/trunk/docs/ClangFormatStyleOptions.rst Sun Feb 14 14:20:58 2016
@@ -666,7 +666,7 @@ Adding additional style options
 ===============================
 
 Each additional style option adds costs to the clang-format project. Some of
-these costs affect the clang-format developement itself, as we need to make
+these costs affect the clang-format development itself, as we need to make
 sure that any given combination of options work and that new features don't
 break any of the existing options in any way. There are also costs for end users
 as options become less discoverable and people have to think about and make a

Modified: cfe/trunk/docs/CrossCompilation.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/CrossCompilation.rst?rev=260856&r1=260855&r2=260856&view=diff
==============================================================================
--- cfe/trunk/docs/CrossCompilation.rst (original)
+++ cfe/trunk/docs/CrossCompilation.rst Sun Feb 14 14:20:58 2016
@@ -32,7 +32,7 @@ when compiling your code.
 
 On the other hand, Clang/LLVM is natively a cross-compiler, meaning that
 one set of programs can compile to all targets by setting the ``-target``
-option. That makes it a lot easier for programers wishing to compile to
+option. That makes it a lot easier for programmers wishing to compile to
 different platforms and architectures, and for compiler developers that
 only have to maintain one build system, and for OS distributions, that
 need only one set of main packages.

Modified: cfe/trunk/docs/LanguageExtensions.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LanguageExtensions.rst?rev=260856&r1=260855&r2=260856&view=diff
==============================================================================
--- cfe/trunk/docs/LanguageExtensions.rst (original)
+++ cfe/trunk/docs/LanguageExtensions.rst Sun Feb 14 14:20:58 2016
@@ -1857,7 +1857,7 @@ in the `ARM C Language Extensions Releas
 <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053c/IHI0053C_acle_2_0.pdf>`_.
 Note that these intrinsics are implemented as motion barriers that block
 reordering of memory accesses and side effect instructions. Other instructions
-like simple arithmatic may be reordered around the intrinsic. If you expect to
+like simple arithmetic may be reordered around the intrinsic. If you expect to
 have no reordering at all, use inline assembly instead.
 
 X86/X86-64 Language Extensions

Modified: cfe/trunk/docs/SanitizerCoverage.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/SanitizerCoverage.rst?rev=260856&r1=260855&r2=260856&view=diff
==============================================================================
--- cfe/trunk/docs/SanitizerCoverage.rst (original)
+++ cfe/trunk/docs/SanitizerCoverage.rst Sun Feb 14 14:20:58 2016
@@ -110,8 +110,8 @@ Sancov matches these files using module
 
     Action (required)
       -print                    - Print coverage addresses
-      -covered-functions        - Print all covered funcions.
-      -not-covered-functions    - Print all not covered funcions.
+      -covered-functions        - Print all covered functions.
+      -not-covered-functions    - Print all not covered functions.
       -html-report              - Print HTML coverage report.
 
     Options




More information about the cfe-commits mailing list