summaryrefslogtreecommitdiff
path: root/support/lib
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-07-10 21:38:28 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-07-10 21:38:28 +0000
commit1115e0483fc6da16d52382f159005baddf028063 (patch)
treeb4fe73f690a3ee643b3527d11739d1e18b76f374 /support/lib
parent951df2b1bd3dae1eb3126cda56ee9ca67a44a33b (diff)
downloadllvm-1115e0483fc6da16d52382f159005baddf028063.tar.gz
llvm-1115e0483fc6da16d52382f159005baddf028063.tar.bz2
llvm-1115e0483fc6da16d52382f159005baddf028063.tar.xz
Fixed grammatical error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7160 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'support/lib')
-rw-r--r--support/lib/Support/CommandLine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/lib/Support/CommandLine.cpp b/support/lib/Support/CommandLine.cpp
index fa67a8a4d7..f508483d69 100644
--- a/support/lib/Support/CommandLine.cpp
+++ b/support/lib/Support/CommandLine.cpp
@@ -216,7 +216,7 @@ void cl::ParseCommandLineOptions(int &argc, char **argv,
// Check to see if this is a positional argument. This argument is
// considered to be positional if it doesn't start with '-', if it is "-"
- // itself, or if we have see "--" already.
+ // itself, or if we have seen "--" already.
//
if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
// Positional argument!