[llvm] 08330db - [llvm][llvm-lit] Fix missing word in --use-unique-output-file-name help

David Spickett via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 21 05:56:03 PDT 2024


Author: David Spickett
Date: 2024-10-21T12:55:25Z
New Revision: 08330dba923c6293b71c85a9f27153c630adc968

URL: https://github.com/llvm/llvm-project/commit/08330dba923c6293b71c85a9f27153c630adc968
DIFF: https://github.com/llvm/llvm-project/commit/08330dba923c6293b71c85a9f27153c630adc968.diff

LOG: [llvm][llvm-lit] Fix missing word in --use-unique-output-file-name help

Fixes 22e21bc1e796406c89e4a24fd81a1623ab2d7d85.

Added: 
    

Modified: 
    llvm/utils/lit/lit/cl_arguments.py

Removed: 
    


################################################################################
diff  --git a/llvm/utils/lit/lit/cl_arguments.py b/llvm/utils/lit/lit/cl_arguments.py
index 85744ded597cd7..3e5488f388ccfa 100644
--- a/llvm/utils/lit/lit/cl_arguments.py
+++ b/llvm/utils/lit/lit/cl_arguments.py
@@ -180,7 +180,7 @@ def parse_args():
         help="When enabled, lit will add a unique element to the output file name, "
         'before the extension. For example "results.xml" will become '
         '"results.<something>.xml". The "<something>" is not ordered in any '
-        "way and is chosen so that existing are not overwritten. [Default: Off]",
+        "way and is chosen so that existing files are not overwritten. [Default: Off]",
         action="store_true",
     )
     execution_group.add_argument(


        


More information about the llvm-commits mailing list