fix comments
authorGabor Greif <ggreif@gmail.com>
Fri, 27 Feb 2009 09:33:37 +0000 (09:33 +0000)
committerGabor Greif <ggreif@gmail.com>
Fri, 27 Feb 2009 09:33:37 +0000 (09:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65627 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/SymbolTableListTraits.h

index e1d46c6772bf88b0008351d1e0d6a573a13fb43c..a6d3e6820fc2928dcf09e3b86e6231c57250a103 100644 (file)
@@ -33,10 +33,8 @@ template<typename NodeTy> class ilist_iterator;
 template<typename NodeTy, typename Traits> class iplist;
 template<typename Ty> struct ilist_traits;
 
-// ValueSubClass  - The type of objects that I hold, e.g. Instruction.
-// ItemParentType - The type of object that owns the list, e.g. BasicBlock.
-// TraitBaseClass - The class this trait should inherit from, it should
-//                  inherit from ilist_traits<ValueSubClass>
+// ValueSubClass   - The type of objects that I hold, e.g. Instruction.
+// ItemParentClass - The type of object that owns the list, e.g. BasicBlock.
 //
 template<typename ValueSubClass, typename ItemParentClass>
 class SymbolTableListTraits : public ilist_default_traits<ValueSubClass> {