Documentation fix: Add a missing parameter name for a \param command

llvm-svn: 158512
This commit is contained in:
James Dennett 2012-06-15 09:04:10 +00:00
parent 9426c6c6d3
commit 84aa05287d
1 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ public:
/// \brief Retrieve a module with the given name.
///
/// \param The name of the module to look up.
/// \param Name The name of the module to look up.
///
/// \returns The named module, if known; otherwise, returns null.
Module *findModule(StringRef Name);
@ -134,7 +134,7 @@ public:
/// \brief Retrieve a module with the given name using lexical name lookup,
/// starting at the given context.
///
/// \param The name of the module to look up.
/// \param Name The name of the module to look up.
///
/// \param Context The module context, from which we will perform lexical
/// name lookup.