diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-16 18:00:35 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-16 18:00:35 +0000 |
commit | c86e84bcf38a94d0bcd09e76ff127ee636354bc0 (patch) | |
tree | 6f411cacca2e860e895b82c5459ab49e69c8346a /lib/Support/CommandLine.cpp | |
parent | ddb7b4ed7389306b622be4f93879b57f7997044e (diff) |
Add missing apostrophe. It's been bugging me for years.
No really, years.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/CommandLine.cpp')
-rw-r--r-- | lib/Support/CommandLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 2d57abdb3c..c0be0ecb34 100644 --- a/lib/Support/CommandLine.cpp +++ b/lib/Support/CommandLine.cpp @@ -400,7 +400,7 @@ void cl::ParseCommandLineOptions(int &argc, char **argv, } if (Handler == 0) { - std::cerr << "Unknown command line argument '" << argv[i] << "'. Try: " + std::cerr << "Unknown command line argument '" << argv[i] << "'. Try: '" << argv[0] << " --help'\n"; ErrorParsing = true; continue; |