[llvm] r191815 - Program.h: Fix \Note into \note. [-Wdocumentation]

NAKAMURA Takumi geek4civic at gmail.com
Wed Oct 2 01:14:42 PDT 2013


Author: chapuni
Date: Wed Oct  2 03:14:38 2013
New Revision: 191815

URL: http://llvm.org/viewvc/llvm-project?rev=191815&view=rev
Log:
Program.h: Fix \Note into \note. [-Wdocumentation]

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=191815&r1=191814&r2=191815&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Program.h (original)
+++ llvm/trunk/include/llvm/Support/Program.h Wed Oct  2 03:14:38 2013
@@ -111,7 +111,7 @@ struct ProcessInfo {
 
   /// Similar to ExecuteAndWait, but returns immediately.
   /// @returns The \see ProcessInfo of the newly launced process.
-  /// \Note On Microsoft Windows systems, users will need to either call \see
+  /// \note On Microsoft Windows systems, users will need to either call \see
   /// Wait until the process finished execution or win32 CloseHandle() API on
   /// ProcessInfo.ProcessHandle to avoid memory leaks.
   ProcessInfo
@@ -128,7 +128,7 @@ struct ProcessInfo {
   /// \li The process id of the child process if the child process has changed
   /// state.
   /// \li 0 if the child process has not changed state.
-  /// \Note Users of this function should always check the ReturnCode member of
+  /// \note Users of this function should always check the ReturnCode member of
   /// the \see ProcessInfo returned from this function.
   ProcessInfo Wait(
       const ProcessInfo &PI, ///< The child process that should be waited on.





More information about the llvm-commits mailing list