]> granicus.if.org Git - clang/commitdiff
Documentation fix: Add a missing parameter name for a \param command
authorJames Dennett <jdennett@google.com>
Fri, 15 Jun 2012 09:04:10 +0000 (09:04 +0000)
committerJames Dennett <jdennett@google.com>
Fri, 15 Jun 2012 09:04:10 +0000 (09:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158512 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Lex/ModuleMap.h

index 4ebb1d42bf3d59e5f5777e834796656bcfa8040c..f3b70ce76ecde7fdd413360b84584d323bf1b957 100644 (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.