[llvm-commits] [llvm] r77457 - /llvm/trunk/include/llvm/Module.h

Devang Patel dpatel at apple.com
Wed Jul 29 08:53:09 PDT 2009


Author: dpatel
Date: Wed Jul 29 10:52:49 2009
New Revision: 77457

URL: http://llvm.org/viewvc/llvm-project?rev=77457&view=rev
Log:
Fix comment.

Modified:
    llvm/trunk/include/llvm/Module.h

Modified: llvm/trunk/include/llvm/Module.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Module.h?rev=77457&r1=77456&r2=77457&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Module.h (original)
+++ llvm/trunk/include/llvm/Module.h Wed Jul 29 10:52:49 2009
@@ -388,7 +388,7 @@
   alias_iterator       alias_end  ()            { return AliasList.end();   }
   /// Get a constant iterator to the last alias.
   const_alias_iterator alias_end  () const      { return AliasList.end();   }
-  /// Determine how many functions are in the Module's list of aliases.
+  /// Determine how many aliases are in the Module's list of aliases.
   size_t               alias_size () const      { return AliasList.size();  }
   /// Determine if the list of aliases is empty.
   bool                 alias_empty() const      { return AliasList.empty(); }





More information about the llvm-commits mailing list