[llvm] 50d55dc - [llvm][llvm-cat] Fix typo in the Input file name option (#108294)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 17 01:51:09 PDT 2024
Author: Amr Hesham
Date: 2024-09-17T10:51:06+02:00
New Revision: 50d55dc175fb4766ca15d5095412c92284df196c
URL: https://github.com/llvm/llvm-project/commit/50d55dc175fb4766ca15d5095412c92284df196c
DIFF: https://github.com/llvm/llvm-project/commit/50d55dc175fb4766ca15d5095412c92284df196c.diff
LOG: [llvm][llvm-cat] Fix typo in the Input file name option (#108294)
Current usage printed by llvm-cat
`USAGE: llvm-cat [options] <input files>`
Should be changed to
`USAGE: llvm-cat [options] <input files>`
Added:
Modified:
llvm/tools/llvm-cat/llvm-cat.cpp
Removed:
################################################################################
diff --git a/llvm/tools/llvm-cat/llvm-cat.cpp b/llvm/tools/llvm-cat/llvm-cat.cpp
index 039f63ad9465fb..f19f66d5621654 100644
--- a/llvm/tools/llvm-cat/llvm-cat.cpp
+++ b/llvm/tools/llvm-cat/llvm-cat.cpp
@@ -44,7 +44,7 @@ static cl::opt<std::string> OutputFilename("o", cl::Required,
cl::cat(CatCategory));
static cl::list<std::string> InputFilenames(cl::Positional,
- cl::desc("<input files>"),
+ cl::desc("<input files>"),
cl::cat(CatCategory));
int main(int argc, char **argv) {
More information about the llvm-commits
mailing list