[llvm-ar] --help: fix unquoted angle bracket (#101364)

Changes the argument in llvm-ar help message from `-M [<mri-script]` to
`-M [< mri-script]`
This commit is contained in:
Linux User
2025-04-07 16:12:50 +00:00
committed by GitHub
parent efce8f1ce6
commit 0a35dd7e99

View File

@@ -130,7 +130,7 @@ MODIFIERS:
<< "USAGE: " + ToolName +
" [options] [-]<operation>[modifiers] [relpos] "
"[count] <archive> [files]\n"
<< " " + ToolName + " -M [<mri-script]\n\n";
<< " " + ToolName + " -M [< mri-script]\n\n";
outs() << ArOptions;
}