]> granicus.if.org Git - llvm/commitdiff
[Support] Fix a doxygen comment (NFC)
authorVedant Kumar <vsk@apple.com>
Fri, 15 Jul 2016 22:44:52 +0000 (22:44 +0000)
committerVedant Kumar <vsk@apple.com>
Fri, 15 Jul 2016 22:44:52 +0000 (22:44 +0000)
There was a missing "<" on a line, so its contents wrapped around into
the description of the next argument.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275638 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Program.h

index acd1bcd26c72f3684c0e77fb723ece87c58c5cdd..055f016d8243615089eef934fa13205746fa6b2b 100644 (file)
@@ -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.