[llvm] [tools][llvm-cat] Fix typo in the Input file name option (PR #108294)
Amr Hesham via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 12 09:53:00 PDT 2024
https://github.com/AmrDeveloper updated https://github.com/llvm/llvm-project/pull/108294
>From 3ffb90f725e51e9c382979d7b1e4b7ecb4bd143e Mon Sep 17 00:00:00 2001
From: AmrDeveloper <amr96 at programmer.net>
Date: Wed, 11 Sep 2024 23:18:34 +0200
Subject: [PATCH] [tools] Fix typo in Input file name option in llvm-cat
---
llvm/tools/llvm-cat/llvm-cat.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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