[llvm-commits] CVS: llvm/lib/Support/CommandLine.cpp

Misha Brukman brukman at cs.uiuc.edu
Thu Jul 10 16:39:01 PDT 2003


Changes in directory llvm/lib/Support:

CommandLine.cpp updated: 1.32 -> 1.33

---
Log message:

Fixed grammatical error.


---
Diffs of the changes:

Index: llvm/lib/Support/CommandLine.cpp
diff -u llvm/lib/Support/CommandLine.cpp:1.32 llvm/lib/Support/CommandLine.cpp:1.33
--- llvm/lib/Support/CommandLine.cpp:1.32	Thu Jul 10 12:05:26 2003
+++ llvm/lib/Support/CommandLine.cpp	Thu Jul 10 16:38:28 2003
@@ -216,7 +216,7 @@
 
     // Check to see if this is a positional argument.  This argument is
     // considered to be positional if it doesn't start with '-', if it is "-"
-    // itself, or if we have see "--" already.
+    // itself, or if we have seen "--" already.
     //
     if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
       // Positional argument!





More information about the llvm-commits mailing list