summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-05-08 22:28:48 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-05-08 22:28:48 +0000
commit96e70b2a0065488e8b72f5c6ace4de9e2e87035c (patch)
treef4d8ecff6069d1f0000d44314ad74d9aa416ed4b /include
parentf7f418471012e29956d5f98f8ea39fb59768ab74 (diff)
downloadllvm-96e70b2a0065488e8b72f5c6ace4de9e2e87035c.tar.gz
llvm-96e70b2a0065488e8b72f5c6ace4de9e2e87035c.tar.bz2
llvm-96e70b2a0065488e8b72f5c6ace4de9e2e87035c.tar.xz
Use correct parameter names in comments [-Wdocumentation]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181478 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/CommandLine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h
index bfaafda50c..30c53253b3 100644
--- a/include/llvm/Support/CommandLine.h
+++ b/include/llvm/Support/CommandLine.h
@@ -1710,8 +1710,8 @@ void PrintVersionMessage();
///
/// NOTE: THIS FUNCTION TERMINATES THE PROGRAM!
///
-/// \param hidden if true will print hidden options
-/// \param categorized if true print options in categories
+/// \param Hidden if true will print hidden options
+/// \param Categorized if true print options in categories
void PrintHelpMessage(bool Hidden=false, bool Categorized=false);
@@ -1722,7 +1722,7 @@ void PrintHelpMessage(bool Hidden=false, bool Categorized=false);
/// \brief Use this to get a StringMap to all registered named options
/// (e.g. -help). Note \p Map Should be an empty StringMap.
///
-/// \param [out] map will be filled with mappings where the key is the
+/// \param [out] Map will be filled with mappings where the key is the
/// Option argument string (e.g. "help") and value is the corresponding
/// Option*.
///