Skip to content

Commit 0a35dd7

Browse files
authored
[llvm-ar] --help: fix unquoted angle bracket (#101364)
Changes the argument in llvm-ar help message from `-M [<mri-script]` to `-M [< mri-script]`
1 parent efce8f1 commit 0a35dd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-ar/llvm-ar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ static void printArHelp(StringRef ToolName) {
130130
<< "USAGE: " + ToolName +
131131
" [options] [-]<operation>[modifiers] [relpos] "
132132
"[count] <archive> [files]\n"
133-
<< " " + ToolName + " -M [<mri-script]\n\n";
133+
<< " " + ToolName + " -M [< mri-script]\n\n";
134134

135135
outs() << ArOptions;
136136
}

0 commit comments

Comments
 (0)