[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>`
This commit is contained in:
Amr Hesham
2024-09-17 10:51:06 +02:00
committed by GitHub
parent 24ccdc5f29
commit 50d55dc175

View File

@@ -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) {