summaryrefslogtreecommitdiff
path: root/docs/GettingStartedVS.rst
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2012-07-23 08:51:15 +0000
committerSylvestre Ledru <sylvestre@debian.org>2012-07-23 08:51:15 +0000
commitc8e41c591741b3da1077f7000274ad040bef8002 (patch)
treede48920d877025af8ab8945b1dfc33404a31ffad /docs/GettingStartedVS.rst
parented1a335ece5c83230af662580e69008ed6fcca17 (diff)
downloadllvm-c8e41c591741b3da1077f7000274ad040bef8002.tar.gz
llvm-c8e41c591741b3da1077f7000274ad040bef8002.tar.bz2
llvm-c8e41c591741b3da1077f7000274ad040bef8002.tar.xz
Fix a typo (the the => the)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160621 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GettingStartedVS.rst')
-rw-r--r--docs/GettingStartedVS.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/GettingStartedVS.rst b/docs/GettingStartedVS.rst
index 7d773b7900..35f97f04b9 100644
--- a/docs/GettingStartedVS.rst
+++ b/docs/GettingStartedVS.rst
@@ -170,7 +170,7 @@ An Example Using the LLVM Tool Chain
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.