summaryrefslogtreecommitdiffstats
path: root/llvm/support/lib/Support/CommandLine.cpp
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
commit5258e59908fc195c5cca807670d73d3aa5acf25a (patch)
tree37f83faba76bf63baf5e9c9082467ab5b102f993 /llvm/support/lib/Support/CommandLine.cpp
parent4f420ce3a3789b2e0875a716c7297812e117c066 (diff)
downloadbcm5719-llvm-5258e59908fc195c5cca807670d73d3aa5acf25a.tar.gz
bcm5719-llvm-5258e59908fc195c5cca807670d73d3aa5acf25a.zip
Fixed grammatical error.
llvm-svn: 7160
Diffstat (limited to 'llvm/support/lib/Support/CommandLine.cpp')
-rw-r--r--llvm/support/lib/Support/CommandLine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/support/lib/Support/CommandLine.cpp b/llvm/support/lib/Support/CommandLine.cpp
index fa67a8a4d77..f508483d692 100644
--- a/llvm/support/lib/Support/CommandLine.cpp
+++ b/llvm/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!
OpenPOWER on IntegriCloud