Use correct parameter names in comments [-Wdocumentation]
authorDmitri Gribenko <gribozavr@gmail.com>
Wed, 8 May 2013 22:28:48 +0000 (22:28 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Wed, 8 May 2013 22:28:48 +0000 (22:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181478 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/CommandLine.h

index bfaafda50c174a81bf2f085920d3719239148e3d..30c53253b3ec65e38a8878eb3c9bd4205d2165d8 100644 (file)
@@ -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*.
 ///