aboutsummaryrefslogtreecommitdiffstats
path: root/docs/CommandLine.html
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-08-10 16:38:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-08-10 16:38:18 +0000
commitd8473378febba85e8b7b72311de08f4ddcc1bf5a (patch)
tree22885850be9adfdd031310207c23d7624a478228 /docs/CommandLine.html
parentabf1ce3c4ea167e16b88f4e9bf02cd161da3a6dd (diff)
downloadexternal_llvm-d8473378febba85e8b7b72311de08f4ddcc1bf5a.zip
external_llvm-d8473378febba85e8b7b72311de08f4ddcc1bf5a.tar.gz
external_llvm-d8473378febba85e8b7b72311de08f4ddcc1bf5a.tar.bz2
Fixed some spellos and grammaros.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15610 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandLine.html')
-rw-r--r--docs/CommandLine.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CommandLine.html b/docs/CommandLine.html
index 7353375..aea3ec8 100644
--- a/docs/CommandLine.html
+++ b/docs/CommandLine.html
@@ -458,10 +458,10 @@ things it doesn't know about, like enums or '<tt>int*</tt>'s?</p>
<p>The answer is that it uses a table driven generic parser (unless you specify
your own parser, as described in the <a href="#extensionguide">Extension
-Guide</a>). This parser maps literal strings to whatever type is required, are
+Guide</a>). This parser maps literal strings to whatever type is required, and
requires you to tell it what this mapping should be.</p>
-<p>Lets say that we would like to add four optimizations levels to our
+<p>Lets say that we would like to add four optimization levels to our
optimizer, using the standard flags "<tt>-g</tt>", "<tt>-O0</tt>",
"<tt>-O1</tt>", and "<tt>-O2</tt>". We could easily implement this with boolean
options like above, but there are several problems with this strategy:</p>