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 | 6d069fcd49db3f5445da401e9fcde7f8f10f7d87 (patch) | |
tree | 7e0bcfe61f45cd5ebfe36d569457e6c77bf0b7d1 /llvm/support/lib/Support/CommandLine.cpp | |
parent | c513f695a4054ed96679ab9733162feb28a97ad2 (diff) | |
download | bcm5719-llvm-6d069fcd49db3f5445da401e9fcde7f8f10f7d87.tar.gz bcm5719-llvm-6d069fcd49db3f5445da401e9fcde7f8f10f7d87.zip |
Add missing apostrophe. It's been bugging me for years.
No really, years.
llvm-svn: 8566
Diffstat (limited to 'llvm/support/lib/Support/CommandLine.cpp')
-rw-r--r-- | llvm/support/lib/Support/CommandLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/support/lib/Support/CommandLine.cpp b/llvm/support/lib/Support/CommandLine.cpp index 2d57abdb3cf..c0be0ecb34e 100644 --- a/llvm/support/lib/Support/CommandLine.cpp +++ b/llvm/support/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; |