[llvm] r181478 - Use correct parameter names in comments [-Wdocumentation]
Dmitri Gribenko
gribozavr at gmail.com
Wed May 8 15:28:49 PDT 2013
Author: gribozavr
Date: Wed May 8 17:28:48 2013
New Revision: 181478
URL: http://llvm.org/viewvc/llvm-project?rev=181478&view=rev
Log:
Use correct parameter names in comments [-Wdocumentation]
Modified:
llvm/trunk/include/llvm/Support/CommandLine.h
Modified: llvm/trunk/include/llvm/Support/CommandLine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/CommandLine.h?rev=181478&r1=181477&r2=181478&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/CommandLine.h (original)
+++ llvm/trunk/include/llvm/Support/CommandLine.h Wed May 8 17:28:48 2013
@@ -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,
/// \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*.
///
More information about the llvm-commits
mailing list