Skip to content

Commit 50d55dc

Browse files
authored
[llvm][llvm-cat] Fix typo in the Input file name option (llvm#108294)
Current usage printed by llvm-cat `USAGE: llvm-cat [options] <input files>` Should be changed to `USAGE: llvm-cat [options] <input files>`
1 parent 24ccdc5 commit 50d55dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-cat/llvm-cat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ static cl::opt<std::string> OutputFilename("o", cl::Required,
4444
cl::cat(CatCategory));
4545

4646
static cl::list<std::string> InputFilenames(cl::Positional,
47-
cl::desc("<input files>"),
47+
cl::desc("<input files>"),
4848
cl::cat(CatCategory));
4949

5050
int main(int argc, char **argv) {

0 commit comments

Comments
 (0)