[llvm] r275638 - [Support] Fix a doxygen comment (NFC)

Vedant Kumar via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 15 15:44:52 PDT 2016


Author: vedantk
Date: Fri Jul 15 17:44:52 2016
New Revision: 275638

URL: http://llvm.org/viewvc/llvm-project?rev=275638&view=rev
Log:
[Support] Fix a doxygen comment (NFC)

There was a missing "<" on a line, so its contents wrapped around into
the description of the next argument.

Modified:
    llvm/trunk/include/llvm/Support/Program.h

Modified: llvm/trunk/include/llvm/Support/Program.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Program.h?rev=275638&r1=275637&r2=275638&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Program.h (original)
+++ llvm/trunk/include/llvm/Support/Program.h Fri Jul 15 17:44:52 2016
@@ -90,7 +90,7 @@ struct ProcessInfo {
   /// -2 indicates a crash during execution or timeout
   int ExecuteAndWait(
       StringRef Program, ///< Path of the program to be executed. It is
-      /// presumed this is the result of the findProgramByName method.
+      ///< presumed this is the result of the findProgramByName method.
       const char **args, ///< A vector of strings that are passed to the
       ///< program.  The first element should be the name of the program.
       ///< The list *must* be terminated by a null char* entry.




More information about the llvm-commits mailing list