Fix a typo (the the => the)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160621 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/Atomics.rst b/docs/Atomics.rst
index db279590..1bca53e 100644
--- a/docs/Atomics.rst
+++ b/docs/Atomics.rst
@@ -318,7 +318,7 @@
   operation, and vice versa.
 
 Notes for optimizers
-  In general, optimizers should treat this like a nothrow call; the the possible
+  In general, optimizers should treat this like a nothrow call; the possible
   optimizations are usually not interesting.
 
 Notes for code generation
diff --git a/docs/CommandGuide/llvm-ar.rst b/docs/CommandGuide/llvm-ar.rst
index aec55ae..eddffeb 100644
--- a/docs/CommandGuide/llvm-ar.rst
+++ b/docs/CommandGuide/llvm-ar.rst
@@ -208,7 +208,7 @@
  When inserting or moving member files, this option specifies the destination of
  the new files as being before the *relpos* member. If *relpos* is not
  found, the files are placed at the end of the archive. This modifier is
- identical to the the *i* modifier.
+ identical to the *i* modifier.
 
 
 
diff --git a/docs/CommandLine.html b/docs/CommandLine.html
index 6f3298a..aff40d0 100644
--- a/docs/CommandLine.html
+++ b/docs/CommandLine.html
@@ -122,7 +122,7 @@
 <ol>
 <li>Speed: The CommandLine library is very quick and uses little resources.  The
 parsing time of the library is directly proportional to the number of arguments
-parsed, not the the number of options recognized.  Additionally, command line
+parsed, not the number of options recognized.  Additionally, command line
 argument values are captured transparently into user defined global variables,
 which can be accessed like any other variable (and with the same
 performance).</li>
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index d1df7dd..c91cb03 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -627,7 +627,7 @@
 LLVM and to give you some basic information about the LLVM environment.</p>
 
 <p>The later sections of this guide describe the <a
-href="#layout">general layout</a> of the the LLVM source tree, a <a
+href="#layout">general layout</a> of the LLVM source tree, a <a
 href="#tutorial">simple example</a> using the LLVM tool chain, and <a
 href="#links">links</a> to find more information about LLVM or to get
 help via e-mail.</p>
@@ -1535,7 +1535,7 @@
   bitcode or assembly (with the <tt>-emit-llvm</tt> option) instead of the
   usual machine code output.  It works just like any other GCC compiler, 
   taking the typical <tt>-c, -S, -E, -o</tt> options that are typically used.  
-  Additionally, the the source code for <tt>llvm-gcc</tt> is available as a 
+  Additionally, the source code for <tt>llvm-gcc</tt> is available as a 
   separate Subversion module.</dd>
 
   <dt><tt><b>opt</b></tt></dt>
diff --git a/docs/GettingStartedVS.rst b/docs/GettingStartedVS.rst
index 7d773b7..35f97f0 100644
--- a/docs/GettingStartedVS.rst
+++ b/docs/GettingStartedVS.rst
@@ -170,7 +170,7 @@
       C:\..> clang -c hello.c -emit-llvm -o hello.bc
 
    This will create the result file ``hello.bc`` which is the LLVM bitcode
-   that corresponds the the compiled program and the library facilities that
+   that corresponds the compiled program and the library facilities that
    it required.  You can execute this file directly using ``lli`` tool,
    compile it to native assembly with the ``llc``, optimize or analyze it
    further with the ``opt`` tool, etc.
diff --git a/docs/LangRef.html b/docs/LangRef.html
index c32c98c..04c1bf8 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1432,7 +1432,7 @@
   <li>If no match is found, and the type sought is an integer type, then the
       smallest integer type that is larger than the bitwidth of the sought type
       is used. If none of the specifications are larger than the bitwidth then
-      the the largest integer type is used. For example, given the default
+      the largest integer type is used. For example, given the default
       specifications above, the i7 type will use the alignment of i8 (next
       largest) while both i65 and i256 will use the alignment of i64 (largest
       specified).</li>
diff --git a/docs/Passes.html b/docs/Passes.html
index a274cbc..2ebc53a 100644
--- a/docs/Passes.html
+++ b/docs/Passes.html
@@ -754,7 +754,7 @@
 </h3>
 <div>
   <p>Provides other passes access to information on how the size and alignment
-  required by the the target ABI for various data types.</p>
+  required by the target ABI for various data types.</p>
 </div>
 
 </div>
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 92ffd5e..cfcce4d 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -3864,7 +3864,7 @@
   *Ty, LinkageTypes Linkage, const std::string &amp;N = "", Module* Parent = 0)</tt>
 
     <p>Constructor used when you need to create new <tt>Function</tt>s to add
-    the the program.  The constructor must specify the type of the function to
+    the program.  The constructor must specify the type of the function to
     create and what type of linkage the function should have. The <a 
     href="#FunctionType"><tt>FunctionType</tt></a> argument
     specifies the formal arguments and return value for the function. The same
diff --git a/docs/tutorial/LangImpl8.html b/docs/tutorial/LangImpl8.html
index efd1756..7c1a500 100644
--- a/docs/tutorial/LangImpl8.html
+++ b/docs/tutorial/LangImpl8.html
@@ -47,7 +47,7 @@
 
 <div>
 
-<p>Welcome to the the final chapter of the "<a href="index.html">Implementing a
+<p>Welcome to the final chapter of the "<a href="index.html">Implementing a
 language with LLVM</a>" tutorial.  In the course of this tutorial, we have grown
 our little Kaleidoscope language from being a useless toy, to being a
 semi-interesting (but probably still useless) toy. :)</p>
diff --git a/docs/tutorial/OCamlLangImpl8.html b/docs/tutorial/OCamlLangImpl8.html
index efd1756..7c1a500 100644
--- a/docs/tutorial/OCamlLangImpl8.html
+++ b/docs/tutorial/OCamlLangImpl8.html
@@ -47,7 +47,7 @@
 
 <div>
 
-<p>Welcome to the the final chapter of the "<a href="index.html">Implementing a
+<p>Welcome to the final chapter of the "<a href="index.html">Implementing a
 language with LLVM</a>" tutorial.  In the course of this tutorial, we have grown
 our little Kaleidoscope language from being a useless toy, to being a
 semi-interesting (but probably still useless) toy. :)</p>