diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-05-08 22:28:48 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-05-08 22:28:48 +0000 |
commit | d0b963e8398e1696ce4d9b86c20a2ee9c2402f3d (patch) | |
tree | 4d96eea982d797bd5d0409da2acd8bac0bd42938 | |
parent | aa9b280c79bcf4addb3e3d5c70e8fe08110c5e4c (diff) | |
download | bcm5719-llvm-d0b963e8398e1696ce4d9b86c20a2ee9c2402f3d.tar.gz bcm5719-llvm-d0b963e8398e1696ce4d9b86c20a2ee9c2402f3d.zip |
Use correct parameter names in comments [-Wdocumentation]
llvm-svn: 181478
-rw-r--r-- | llvm/include/llvm/Support/CommandLine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Support/CommandLine.h b/llvm/include/llvm/Support/CommandLine.h index bfaafda50c1..30c53253b3e 100644 --- a/llvm/include/llvm/Support/CommandLine.h +++ b/llvm/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*. /// |