summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-10-02 08:14:38 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-10-02 08:14:38 +0000
commit0d1785a2e64648584d8230172125d171d5f1ca02 (patch)
tree970b31eaa2256c3781fb1205167886ea96bcab29 /include
parent3db24f52c5c0404529b627688106e0fd11a64400 (diff)
downloadllvm-0d1785a2e64648584d8230172125d171d5f1ca02.tar.gz
llvm-0d1785a2e64648584d8230172125d171d5f1ca02.tar.bz2
llvm-0d1785a2e64648584d8230172125d171d5f1ca02.tar.xz
Program.h: Fix \Note into \note. [-Wdocumentation]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Program.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/Program.h b/include/llvm/Support/Program.h
index 91781f9a5f..00571a4080 100644
--- a/include/llvm/Support/Program.h
+++ b/include/llvm/Support/Program.h
@@ -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.